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

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

Issue 15675008: Add enable-app-launcher-shim to chrome://flags. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 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 | Annotate | Revision Log
« chrome/browser/about_flags.cc ('K') | « chrome/browser/about_flags.cc ('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) 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 #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 1505 matching lines...) Expand 10 before | Expand all | Expand 10 after
1516 // Specifies which password store to use (detect, default, gnome, kwallet). 1516 // Specifies which password store to use (detect, default, gnome, kwallet).
1517 const char kPasswordStore[] = "password-store"; 1517 const char kPasswordStore[] = "password-store";
1518 #endif 1518 #endif
1519 #endif // OS_POSIX 1519 #endif // OS_POSIX
1520 1520
1521 #if defined(OS_MACOSX) 1521 #if defined(OS_MACOSX)
1522 // Enables the app list OSX .app shim, for showing the app list. Takes an 1522 // Enables the app list OSX .app shim, for showing the app list. Takes an
1523 // optional argument: --enable-app-list-shim=0 will delete a previously created 1523 // optional argument: --enable-app-list-shim=0 will delete a previously created
1524 // .app folder for the app list shim. Any other argument, or no argument, will 1524 // .app folder for the app list shim. Any other argument, or no argument, will
1525 // create it. 1525 // create it.
1526 extern const char kEnableAppListShim[] = "enable-app-list-shim"; 1526 const char kEnableAppListShim[] = "enable-app-list-shim";
1527 1527
1528 // Enables the tabs expose feature ( http://crbug.com/50307 ). 1528 // Enables the tabs expose feature ( http://crbug.com/50307 ).
1529 const char kEnableExposeForTabs[] = "enable-expose-for-tabs"; 1529 const char kEnableExposeForTabs[] = "enable-expose-for-tabs";
1530 1530
1531 // Performs Keychain reauthorization from the command line on behalf of a 1531 // Performs Keychain reauthorization from the command line on behalf of a
1532 // special Keychain reauthorization stub executable. Used during auto-update. 1532 // special Keychain reauthorization stub executable. Used during auto-update.
1533 const char kKeychainReauthorize[] = "keychain-reauthorize"; 1533 const char kKeychainReauthorize[] = "keychain-reauthorize";
1534 1534
1535 // A process type (switches::kProcessType) that relaunches the browser. See 1535 // A process type (switches::kProcessType) that relaunches the browser. See
1536 // chrome/browser/mac/relauncher.h. 1536 // chrome/browser/mac/relauncher.h.
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
1592 1592
1593 // ----------------------------------------------------------------------------- 1593 // -----------------------------------------------------------------------------
1594 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1594 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1595 // 1595 //
1596 // You were going to just dump your switches here, weren't you? Instead, please 1596 // You were going to just dump your switches here, weren't you? Instead, please
1597 // put them in alphabetical order above, or in order inside the appropriate 1597 // put them in alphabetical order above, or in order inside the appropriate
1598 // ifdef at the bottom. The order should match the header. 1598 // ifdef at the bottom. The order should match the header.
1599 // ----------------------------------------------------------------------------- 1599 // -----------------------------------------------------------------------------
1600 1600
1601 } // namespace switches 1601 } // namespace switches
OLDNEW
« chrome/browser/about_flags.cc ('K') | « chrome/browser/about_flags.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698