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

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 window flag by default (nit) 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') | no next file with comments »
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 28 matching lines...) Expand all
83 83
84 // Returns true if side shelf alignment is enabled. 84 // Returns true if side shelf alignment is enabled.
85 ASH_EXPORT bool ShowShelfAlignmentMenu(); 85 ASH_EXPORT bool ShowShelfAlignmentMenu();
86 86
87 // Returns true if the full MultiProfile mode (M-31 version) is used. 87 // Returns true if the full MultiProfile mode (M-31 version) is used.
88 ASH_EXPORT bool UseFullMultiProfileMode(); 88 ASH_EXPORT bool UseFullMultiProfileMode();
89 89
90 // Returns true if overview mode should be activated for window switching. 90 // Returns true if overview mode should be activated for window switching.
91 ASH_EXPORT bool UseOverviewMode(); 91 ASH_EXPORT bool UseOverviewMode();
92 92
93 // Returns true if docked windows feature is enabled.
94 ASH_EXPORT bool UseDockedWindows();
95
93 #if defined(OS_CHROMEOS) 96 #if defined(OS_CHROMEOS)
94 // Returns true if new audio handler should be used. 97 // Returns true if new audio handler should be used.
95 ASH_EXPORT bool UseNewAudioHandler(); 98 ASH_EXPORT bool UseNewAudioHandler();
96 99
97 // Returns true if we should show the audio device switching UI. 100 // Returns true if we should show the audio device switching UI.
98 ASH_EXPORT bool ShowAudioDeviceMenu(); 101 ASH_EXPORT bool ShowAudioDeviceMenu();
99 102
100 // Returns true if a notification should appear when a low-power USB charger 103 // Returns true if a notification should appear when a low-power USB charger
101 // is connected. 104 // is connected.
102 ASH_EXPORT bool UseUsbChargerNotification(); 105 ASH_EXPORT bool UseUsbChargerNotification();
103 #endif 106 #endif
104 107
105 } // namespace switches 108 } // namespace switches
106 } // namespace ash 109 } // namespace ash
107 110
108 #endif // ASH_ASH_SWITCHES_H_ 111 #endif // ASH_ASH_SWITCHES_H_
OLDNEW
« no previous file with comments | « no previous file | ash/ash_switches.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698