Don't consider a Bluetooth adapter present until it has an address.
[chromium-blink-merge.git] / ash / ash_switches.cc
blob8d2dca7031e0fe19c771dd3cdf65bb4ecec84e72
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include "ash/ash_switches.h"
7 namespace ash {
8 namespace switches {
10 // Constrains the pointer movement within a root window on desktop.
11 const char kAshConstrainPointerToRoot[] = "ash-constrain-pointer-to-root";
13 // Enable keyboard shortcuts useful for debugging.
14 const char kAshDebugShortcuts[] = "ash-debug-shortcuts";
16 // Disables Workspace2.
17 const char kAshDisableWorkspace2[] = "ash-disable-workspace2";
19 // Enable advanced gestures (e.g. for window management).
20 const char kAshEnableAdvancedGestures[] = "ash-enable-advanced-gestures";
22 // Enables the Oak tree viewer.
23 const char kAshEnableOak[] = "ash-enable-oak";
25 // Disable using Ash notifications.
26 const char kAshNotifyDisabled[] = "ash-notify-disabled";
28 // Specifies the layout mode and offsets for the secondary display for
29 // testing. The format is "<t|r|b|l>,<offset>" where t=TOP, r=RIGHT,
30 // b=BOTTOM and L=LEFT. For example, 'r,-100' means the secondary display
31 // is positioned on the right with -100 offset. (above than primary)
32 const char kAshSecondaryDisplayLayout[] = "ash-secondary-display-layout";
34 // Enables the heads-up display for tracking touch points.
35 const char kAshTouchHud[] = "ash-touch-hud";
37 // If present animations are disabled.
38 const char kAshWindowAnimationsDisabled[] = "ash-window-animations-disabled";
40 // Use Google-style dialog box frames.
41 const char kAuraGoogleDialogFrames[] = "aura-google-dialog-frames";
43 // (Most) Chrome OS hardware reports ACPI power button releases correctly.
44 // Standard hardware reports releases immediately after presses. If set, we
45 // lock the screen or shutdown the system immediately in response to a press
46 // instead of displaying an interactive animation.
47 const char kAuraLegacyPowerButton[] = "aura-legacy-power-button";
49 // Avoid drawing drop shadows under windows.
50 const char kAuraNoShadows[] = "aura-no-shadows";
52 } // namespace switches
53 } // namespace ash