Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(570)

Side by Side Diff: ash/ash_switches.h

Issue 55363004: Enables docked windows by default (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Enables docked windows by default Created 7 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | ash/ash_switches.cc » ('j') | ash/display/screen_position_controller.cc » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 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 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef ASH_ASH_SWITCHES_H_ 5 #ifndef ASH_ASH_SWITCHES_H_
6 #define ASH_ASH_SWITCHES_H_ 6 #define ASH_ASH_SWITCHES_H_
7 7
8 #include "ash/ash_export.h" 8 #include "ash/ash_export.h"
9 9
10 #include "build/build_config.h" 10 #include "build/build_config.h"
(...skipping 13 matching lines...) Expand all
24 ASH_EXPORT extern const char kAshDebugShowPreferredNetworks[]; 24 ASH_EXPORT extern const char kAshDebugShowPreferredNetworks[];
25 ASH_EXPORT extern const char kAshDefaultWallpaperLarge[]; 25 ASH_EXPORT extern const char kAshDefaultWallpaperLarge[];
26 ASH_EXPORT extern const char kAshDefaultWallpaperSmall[]; 26 ASH_EXPORT extern const char kAshDefaultWallpaperSmall[];
27 ASH_EXPORT extern const char kAshDisableAlternateShelfLayout[]; 27 ASH_EXPORT extern const char kAshDisableAlternateShelfLayout[];
28 #if defined(OS_CHROMEOS) 28 #if defined(OS_CHROMEOS)
29 ASH_EXPORT extern const char kAshDisableAudioDeviceMenu[]; 29 ASH_EXPORT extern const char kAshDisableAudioDeviceMenu[];
30 #endif 30 #endif
31 ASH_EXPORT extern const char kAshDisableAlternateFrameCaptionButtonStyle[]; 31 ASH_EXPORT extern const char kAshDisableAlternateFrameCaptionButtonStyle[];
32 ASH_EXPORT extern const char kAshDisableAutoMaximizing[]; 32 ASH_EXPORT extern const char kAshDisableAutoMaximizing[];
33 ASH_EXPORT extern const char kAshDisableDisplayChangeLimiter[]; 33 ASH_EXPORT extern const char kAshDisableDisplayChangeLimiter[];
34 ASH_EXPORT extern const char kAshDisableDockedWindows[];
34 ASH_EXPORT extern const char kAshDisableDragOffShelf[]; 35 ASH_EXPORT extern const char kAshDisableDragOffShelf[];
35 ASH_EXPORT extern const char kAshDisableOverviewMode[]; 36 ASH_EXPORT extern const char kAshDisableOverviewMode[];
36 ASH_EXPORT extern const char kAshDisableDragAndDropAppListToLauncher[]; 37 ASH_EXPORT extern const char kAshDisableDragAndDropAppListToLauncher[];
37 #if defined(OS_CHROMEOS) 38 #if defined(OS_CHROMEOS)
38 ASH_EXPORT extern const char kAshDisableUsbChargerNotification[]; 39 ASH_EXPORT extern const char kAshDisableUsbChargerNotification[];
39 ASH_EXPORT extern const char kAshEnableAudioDeviceMenu[]; 40 ASH_EXPORT extern const char kAshEnableAudioDeviceMenu[];
40 #endif 41 #endif
41 ASH_EXPORT extern const char kAshEnableAdvancedGestures[]; 42 ASH_EXPORT extern const char kAshEnableAdvancedGestures[];
42 ASH_EXPORT extern const char kAshEnableAlternateFrameCaptionButtonStyle[]; 43 ASH_EXPORT extern const char kAshEnableAlternateFrameCaptionButtonStyle[];
43 ASH_EXPORT extern const char kAshEnableBrightnessControl[]; 44 ASH_EXPORT extern const char kAshEnableBrightnessControl[];
44 ASH_EXPORT extern const char kAshEnableDockedWindows[];
45 #if defined(OS_CHROMEOS) 45 #if defined(OS_CHROMEOS)
46 ASH_EXPORT extern const char kAshEnableFullMultiProfileMode[]; 46 ASH_EXPORT extern const char kAshEnableFullMultiProfileMode[];
47 #endif 47 #endif
48 #if defined(OS_LINUX) 48 #if defined(OS_LINUX)
49 ASH_EXPORT extern const char kAshEnableMemoryMonitor[]; 49 ASH_EXPORT extern const char kAshEnableMemoryMonitor[];
50 #endif 50 #endif
51 ASH_EXPORT extern const char kAshEnableOak[]; 51 ASH_EXPORT extern const char kAshEnableOak[];
52 ASH_EXPORT extern const char kAshEnableSoftwareMirroring[]; 52 ASH_EXPORT extern const char kAshEnableSoftwareMirroring[];
53 ASH_EXPORT extern const char kAshEnableStickyEdges[]; 53 ASH_EXPORT extern const char kAshEnableStickyEdges[];
54 ASH_EXPORT extern const char kAshEnableTrayDragging[]; 54 ASH_EXPORT extern const char kAshEnableTrayDragging[];
(...skipping 29 matching lines...) Expand all
84 84
85 // Returns true if side shelf alignment is enabled. 85 // Returns true if side shelf alignment is enabled.
86 ASH_EXPORT bool ShowShelfAlignmentMenu(); 86 ASH_EXPORT bool ShowShelfAlignmentMenu();
87 87
88 // Returns true if the full MultiProfile mode (M-31 version) is used. 88 // Returns true if the full MultiProfile mode (M-31 version) is used.
89 ASH_EXPORT bool UseFullMultiProfileMode(); 89 ASH_EXPORT bool UseFullMultiProfileMode();
90 90
91 // Returns true if overview mode should be activated for window switching. 91 // Returns true if overview mode should be activated for window switching.
92 ASH_EXPORT bool UseOverviewMode(); 92 ASH_EXPORT bool UseOverviewMode();
93 93
94 // Returns true if docked windows feature is enabled.
95 ASH_EXPORT bool UseDockedWindows();
96
94 #if defined(OS_CHROMEOS) 97 #if defined(OS_CHROMEOS)
95 // Returns true if new audio handler should be used. 98 // Returns true if new audio handler should be used.
96 ASH_EXPORT bool UseNewAudioHandler(); 99 ASH_EXPORT bool UseNewAudioHandler();
97 100
98 // Returns true if we should show the audio device switching UI. 101 // Returns true if we should show the audio device switching UI.
99 ASH_EXPORT bool ShowAudioDeviceMenu(); 102 ASH_EXPORT bool ShowAudioDeviceMenu();
100 103
101 // Returns true if a notification should appear when a low-power USB charger 104 // Returns true if a notification should appear when a low-power USB charger
102 // is connected. 105 // is connected.
103 ASH_EXPORT bool UseUsbChargerNotification(); 106 ASH_EXPORT bool UseUsbChargerNotification();
104 #endif 107 #endif
105 108
106 } // namespace switches 109 } // namespace switches
107 } // namespace ash 110 } // namespace ash
108 111
109 #endif // ASH_ASH_SWITCHES_H_ 112 #endif // ASH_ASH_SWITCHES_H_
OLDNEW
« no previous file with comments | « no previous file | ash/ash_switches.cc » ('j') | ash/display/screen_position_controller.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698