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

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

Issue 6708037: Merge 78737 - Revert 74236 - Mac: Turn on tab overview mode by default. (Closed) Base URL: svn://svn.chromium.org/chrome/branches/696/src/
Patch Set: Created 9 years, 9 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 | Annotate | Revision Log
« no previous file with comments | « chrome/common/chrome_switches.h ('k') | no next file » | 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) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 #include "chrome/common/chrome_switches.h" 5 #include "chrome/common/chrome_switches.h"
6 6
7 #include "base/base_switches.h" 7 #include "base/base_switches.h"
8 8
9 namespace switches { 9 namespace switches {
10 10
(...skipping 1184 matching lines...) Expand 10 before | Expand all | Expand 10 after
1195 // Bypass the error dialog when the profile lock couldn't be attained. 1195 // Bypass the error dialog when the profile lock couldn't be attained.
1196 // This switch is used during automated testing. 1196 // This switch is used during automated testing.
1197 const char kNoProcessSingletonDialog[] = "no-process-singleton-dialog"; 1197 const char kNoProcessSingletonDialog[] = "no-process-singleton-dialog";
1198 1198
1199 #if !defined(OS_MACOSX) && !defined(OS_CHROMEOS) 1199 #if !defined(OS_MACOSX) && !defined(OS_CHROMEOS)
1200 // Specifies which password store to use (detect, default, gnome, kwallet). 1200 // Specifies which password store to use (detect, default, gnome, kwallet).
1201 const char kPasswordStore[] = "password-store"; 1201 const char kPasswordStore[] = "password-store";
1202 #endif 1202 #endif
1203 #endif 1203 #endif
1204 1204
1205 #if defined(OS_MACOSX)
1206 // Enables the tabs expose feature ( http://crbug.com/50307 ).
1207 const char kEnableExposeForTabs[] = "enable-expose-for-tabs";
1208 #endif
1209
1205 #if !defined(OS_MACOSX) 1210 #if !defined(OS_MACOSX)
1206 // Enable Kiosk mode. 1211 // Enable Kiosk mode.
1207 const char kKioskMode[] = "kiosk"; 1212 const char kKioskMode[] = "kiosk";
1208 #endif 1213 #endif
1209 1214
1210 // Enables debug paint in views framework. Enabling this causes the damaged 1215 // Enables debug paint in views framework. Enabling this causes the damaged
1211 // region being painted to flash in red. 1216 // region being painted to flash in red.
1212 #if defined(TOOLKIT_VIEWS) 1217 #if defined(TOOLKIT_VIEWS)
1213 const char kDebugViewsPaint[] = "debug-views-paint"; 1218 const char kDebugViewsPaint[] = "debug-views-paint";
1214 #endif 1219 #endif
(...skipping 25 matching lines...) Expand all
1240 1245
1241 // ----------------------------------------------------------------------------- 1246 // -----------------------------------------------------------------------------
1242 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1247 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1243 // 1248 //
1244 // You were going to just dump your switches here, weren't you? Instead, 1249 // You were going to just dump your switches here, weren't you? Instead,
1245 // please put them in alphabetical order above, or in order inside the 1250 // please put them in alphabetical order above, or in order inside the
1246 // appropriate ifdef at the bottom. The order should match the header. 1251 // appropriate ifdef at the bottom. The order should match the header.
1247 // ----------------------------------------------------------------------------- 1252 // -----------------------------------------------------------------------------
1248 1253
1249 } // namespace switches 1254 } // namespace switches
OLDNEW
« no previous file with comments | « chrome/common/chrome_switches.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698