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

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

Issue 6459009: Mac: Turn on tab overview mode by default. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: mento wins again Created 9 years, 10 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) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 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 #include "base/command_line.h" 8 #include "base/command_line.h"
9 9
10 namespace switches { 10 namespace switches {
(...skipping 1337 matching lines...) Expand 10 before | Expand all | Expand 10 after
1348 const char kPasswordStore[] = "password-store"; 1348 const char kPasswordStore[] = "password-store";
1349 #endif 1349 #endif
1350 #endif 1350 #endif
1351 1351
1352 #if defined(OS_MACOSX) 1352 #if defined(OS_MACOSX)
1353 // Temporary flag to disable hole punching for accelerated surfaces. This is 1353 // Temporary flag to disable hole punching for accelerated surfaces. This is
1354 // here to aid debugging eventual problems, it can be removed once hole punching 1354 // here to aid debugging eventual problems, it can be removed once hole punching
1355 // has been out there for a few dev channel releases without problems. 1355 // has been out there for a few dev channel releases without problems.
1356 const char kDisableHolePunching[] = "disable-hole-punching"; 1356 const char kDisableHolePunching[] = "disable-hole-punching";
1357 1357
1358 // Enables the tabs expose feature ( http://crbug.com/50307 ).
1359 const char kEnableExposeForTabs[] = "enable-expose-for-tabs";
1360
1361 // Cause the OS X sandbox write to syslog every time an access to a resource 1358 // Cause the OS X sandbox write to syslog every time an access to a resource
1362 // is denied by the sandbox. 1359 // is denied by the sandbox.
1363 const char kEnableSandboxLogging[] = "enable-sandbox-logging"; 1360 const char kEnableSandboxLogging[] = "enable-sandbox-logging";
1364 #else 1361 #else
1365 // Enable Kiosk mode. 1362 // Enable Kiosk mode.
1366 const char kKioskMode[] = "kiosk"; 1363 const char kKioskMode[] = "kiosk";
1367 #endif 1364 #endif
1368 1365
1369 #ifndef NDEBUG 1366 #ifndef NDEBUG
1370 // Clear the token service before using it. This allows simulating 1367 // Clear the token service before using it. This allows simulating
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
1408 1405
1409 // ----------------------------------------------------------------------------- 1406 // -----------------------------------------------------------------------------
1410 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1407 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1411 // 1408 //
1412 // You were going to just dump your switches here, weren't you? Instead, 1409 // You were going to just dump your switches here, weren't you? Instead,
1413 // please put them in alphabetical order above, or in order inside the 1410 // please put them in alphabetical order above, or in order inside the
1414 // appropriate ifdef at the bottom. The order should match the header. 1411 // appropriate ifdef at the bottom. The order should match the header.
1415 // ----------------------------------------------------------------------------- 1412 // -----------------------------------------------------------------------------
1416 1413
1417 } // namespace switches 1414 } // 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