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

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: Update comment in apps_page.js 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
« 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) 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 1501 matching lines...) Expand 10 before | Expand all | Expand 10 after
1512 const char kPasswordStore[] = "password-store"; 1512 const char kPasswordStore[] = "password-store";
1513 #endif 1513 #endif
1514 #endif // OS_POSIX 1514 #endif // OS_POSIX
1515 1515
1516 #if defined(OS_MACOSX) 1516 #if defined(OS_MACOSX)
1517 // Enables the app list OSX .app shim, for showing the app list. If the flag is 1517 // Enables the app list OSX .app shim, for showing the app list. If the flag is
1518 // not present, Chrome will check if the shim exists at startup, and delete it 1518 // not present, Chrome will check if the shim exists at startup, and delete it
1519 // if it does. 1519 // if it does.
1520 const char kEnableAppListShim[] = "enable-app-list-shim"; 1520 const char kEnableAppListShim[] = "enable-app-list-shim";
1521 1521
1522 // Enable to allow creation and launch of app shims for platform apps.
1523 const char kEnableAppShims[] = "enable-app-shims";
1524
1522 // Enables the tabs expose feature ( http://crbug.com/50307 ). 1525 // Enables the tabs expose feature ( http://crbug.com/50307 ).
1523 const char kEnableExposeForTabs[] = "enable-expose-for-tabs"; 1526 const char kEnableExposeForTabs[] = "enable-expose-for-tabs";
1524 1527
1525 // Performs Keychain reauthorization from the command line on behalf of a 1528 // Performs Keychain reauthorization from the command line on behalf of a
1526 // special Keychain reauthorization stub executable. Used during auto-update. 1529 // special Keychain reauthorization stub executable. Used during auto-update.
1527 const char kKeychainReauthorize[] = "keychain-reauthorize"; 1530 const char kKeychainReauthorize[] = "keychain-reauthorize";
1528 1531
1529 // A process type (switches::kProcessType) that relaunches the browser. See 1532 // A process type (switches::kProcessType) that relaunches the browser. See
1530 // chrome/browser/mac/relauncher.h. 1533 // chrome/browser/mac/relauncher.h.
1531 const char kRelauncherProcess[] = "relauncher"; 1534 const char kRelauncherProcess[] = "relauncher";
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
1586 1589
1587 // ----------------------------------------------------------------------------- 1590 // -----------------------------------------------------------------------------
1588 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1591 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1589 // 1592 //
1590 // You were going to just dump your switches here, weren't you? Instead, please 1593 // You were going to just dump your switches here, weren't you? Instead, please
1591 // put them in alphabetical order above, or in order inside the appropriate 1594 // put them in alphabetical order above, or in order inside the appropriate
1592 // ifdef at the bottom. The order should match the header. 1595 // ifdef at the bottom. The order should match the header.
1593 // ----------------------------------------------------------------------------- 1596 // -----------------------------------------------------------------------------
1594 1597
1595 } // namespace switches 1598 } // 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