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

Side by Side Diff: chrome/common/chrome_switches.h

Issue 2083113002: Disable Panels on OSes other than ChromeOS, in preparation to removing the code. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 6 months 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
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 // Defines the shared command-line switches used by code in the Chrome 5 // Defines the shared command-line switches used by code in the Chrome
6 // directory that don't have anywhere more specific to go. 6 // directory that don't have anywhere more specific to go.
7 7
8 #ifndef CHROME_COMMON_CHROME_SWITCHES_H_ 8 #ifndef CHROME_COMMON_CHROME_SWITCHES_H_
9 #define CHROME_COMMON_CHROME_SWITCHES_H_ 9 #define CHROME_COMMON_CHROME_SWITCHES_H_
10 10
(...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after
138 #if defined(OS_CHROMEOS) 138 #if defined(OS_CHROMEOS)
139 extern const char kEnableNativeCups[]; 139 extern const char kEnableNativeCups[];
140 #endif // defined(OS_CHROMEOS) 140 #endif // defined(OS_CHROMEOS)
141 extern const char kEnableNativeNotifications[]; 141 extern const char kEnableNativeNotifications[];
142 extern const char kEnableNavigationTracing[]; 142 extern const char kEnableNavigationTracing[];
143 extern const char kEnableNetBenchmarking[]; 143 extern const char kEnableNetBenchmarking[];
144 extern const char kEnableNewBookmarkApps[]; 144 extern const char kEnableNewBookmarkApps[];
145 extern const char kEnableOfflineAutoReload[]; 145 extern const char kEnableOfflineAutoReload[];
146 extern const char kEnableOfflineAutoReloadVisibleOnly[]; 146 extern const char kEnableOfflineAutoReloadVisibleOnly[];
147 extern const char kEnablePanels[]; 147 extern const char kEnablePanels[];
148 extern const char kDisablePanels[];
149 extern const char kEnablePermissionActionReporting[]; 148 extern const char kEnablePermissionActionReporting[];
150 extern const char kEnablePermissionsBlacklist[]; 149 extern const char kEnablePermissionsBlacklist[];
151 extern const char kEnablePotentiallyAnnoyingSecurityFeatures[]; 150 extern const char kEnablePotentiallyAnnoyingSecurityFeatures[];
152 extern const char kEnablePowerOverlay[]; 151 extern const char kEnablePowerOverlay[];
153 extern const char kEnablePrintPreviewRegisterPromos[]; 152 extern const char kEnablePrintPreviewRegisterPromos[];
154 extern const char kEnableProfiling[]; 153 extern const char kEnableProfiling[];
155 extern const char kEnablePushApiBackgroundMode[]; 154 extern const char kEnablePushApiBackgroundMode[];
156 extern const char kEnableWebRtcEventLoggingFromExtension[]; 155 extern const char kEnableWebRtcEventLoggingFromExtension[];
157 extern const char kEnableSessionCrashedBubble[]; 156 extern const char kEnableSessionCrashedBubble[];
158 extern const char kEnableSettingsWindow[]; 157 extern const char kEnableSettingsWindow[];
(...skipping 242 matching lines...) Expand 10 before | Expand all | Expand 10 after
401 #if defined(OS_CHROMEOS) 400 #if defined(OS_CHROMEOS)
402 bool PowerOverlayEnabled(); 401 bool PowerOverlayEnabled();
403 #endif 402 #endif
404 403
405 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in 404 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in
406 // alphabetical order, or in one of the ifdefs (also in order in each section). 405 // alphabetical order, or in one of the ifdefs (also in order in each section).
407 406
408 } // namespace switches 407 } // namespace switches
409 408
410 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ 409 #endif // CHROME_COMMON_CHROME_SWITCHES_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698