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

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

Issue 16191003: Add enable-app-shims 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
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 1507 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 extern const char kEnableAppListShim[] = "enable-app-list-shim";
1527 1527
1528 // Enable to allow creation and launch of app shims for platform apps.
1529 const char kEnableAppShims[] = "enable-app-shims";
tapted 2013/05/29 08:07:36 nit: align `=`
jackhou1 2013/05/30 04:43:17 Done.
1530
1528 // Enables the tabs expose feature ( http://crbug.com/50307 ). 1531 // Enables the tabs expose feature ( http://crbug.com/50307 ).
1529 const char kEnableExposeForTabs[] = "enable-expose-for-tabs"; 1532 const char kEnableExposeForTabs[] = "enable-expose-for-tabs";
1530 1533
1531 // Performs Keychain reauthorization from the command line on behalf of a 1534 // Performs Keychain reauthorization from the command line on behalf of a
1532 // special Keychain reauthorization stub executable. Used during auto-update. 1535 // special Keychain reauthorization stub executable. Used during auto-update.
1533 const char kKeychainReauthorize[] = "keychain-reauthorize"; 1536 const char kKeychainReauthorize[] = "keychain-reauthorize";
1534 1537
1535 // A process type (switches::kProcessType) that relaunches the browser. See 1538 // A process type (switches::kProcessType) that relaunches the browser. See
1536 // chrome/browser/mac/relauncher.h. 1539 // chrome/browser/mac/relauncher.h.
1537 const char kRelauncherProcess[] = "relauncher"; 1540 const char kRelauncherProcess[] = "relauncher";
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
1592 1595
1593 // ----------------------------------------------------------------------------- 1596 // -----------------------------------------------------------------------------
1594 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1597 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1595 // 1598 //
1596 // You were going to just dump your switches here, weren't you? Instead, please 1599 // 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 1600 // put them in alphabetical order above, or in order inside the appropriate
1598 // ifdef at the bottom. The order should match the header. 1601 // ifdef at the bottom. The order should match the header.
1599 // ----------------------------------------------------------------------------- 1602 // -----------------------------------------------------------------------------
1600 1603
1601 } // namespace switches 1604 } // namespace switches
OLDNEW
« chrome/app/generated_resources.grd ('K') | « chrome/common/chrome_switches.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698