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

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

Issue 10919321: Installer changes for app host to support command line install from webstore (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Created 8 years, 3 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 73 matching lines...) Expand 10 before | Expand all | Expand 10 after
84 // Allows the webstorePrivate APIs to return browser (aka sync) login tokens to 84 // Allows the webstorePrivate APIs to return browser (aka sync) login tokens to
85 // be used for auto-login in the Web Store (normally they do not). 85 // be used for auto-login in the Web Store (normally they do not).
86 const char kAppsGalleryReturnTokens[] = "apps-gallery-return-tokens"; 86 const char kAppsGalleryReturnTokens[] = "apps-gallery-return-tokens";
87 87
88 // The URL to use for the gallery link in the app launcher. 88 // The URL to use for the gallery link in the app launcher.
89 const char kAppsGalleryURL[] = "apps-gallery-url"; 89 const char kAppsGalleryURL[] = "apps-gallery-url";
90 90
91 // The update url used by gallery/webstore extensions. 91 // The update url used by gallery/webstore extensions.
92 const char kAppsGalleryUpdateURL[] = "apps-gallery-update-url"; 92 const char kAppsGalleryUpdateURL[] = "apps-gallery-update-url";
93 93
94 // TODO(asargent) - remove this flag and change uses of it to instead use
95 // kInstallFromWebstore.
96 //
97 // Specifies the URL of an application manifest to retrieve. The user will be
98 // prompted for consent and the application retrieved/installed if consented.
99 const char kAppsInstallFromManifestURL[] = "apps-install-from-manifest-url";
100
101 // Whether to always use the new app install bubble when installing an app. 94 // Whether to always use the new app install bubble when installing an app.
102 const char kAppsNewInstallBubble[] = "apps-new-install-bubble"; 95 const char kAppsNewInstallBubble[] = "apps-new-install-bubble";
103 96
104 // Disable throbber for extension apps. 97 // Disable throbber for extension apps.
105 const char kAppsNoThrob[] = "apps-no-throb"; 98 const char kAppsNoThrob[] = "apps-no-throb";
106 99
107 // Whitelist of servers that Negotiate will generate delegated Kerberos tickets 100 // Whitelist of servers that Negotiate will generate delegated Kerberos tickets
108 // for. 101 // for.
109 const char kAuthNegotiateDelegateWhitelist[] = 102 const char kAuthNegotiateDelegateWhitelist[] =
110 "auth-negotiate-delegate-whitelist"; 103 "auth-negotiate-delegate-whitelist";
(...skipping 1470 matching lines...) Expand 10 before | Expand all | Expand 10 after
1581 1574
1582 // ----------------------------------------------------------------------------- 1575 // -----------------------------------------------------------------------------
1583 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1576 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1584 // 1577 //
1585 // You were going to just dump your switches here, weren't you? Instead, please 1578 // You were going to just dump your switches here, weren't you? Instead, please
1586 // put them in alphabetical order above, or in order inside the appropriate 1579 // put them in alphabetical order above, or in order inside the appropriate
1587 // ifdef at the bottom. The order should match the header. 1580 // ifdef at the bottom. The order should match the header.
1588 // ----------------------------------------------------------------------------- 1581 // -----------------------------------------------------------------------------
1589 1582
1590 } // namespace switches 1583 } // namespace switches
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698