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

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

Issue 7529011: Add a flag that lets the webstore show a different UI on app install. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: ready for review Created 9 years, 4 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) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
63 // sync) login tokens to be used for auto-login in the Web Store (normally they 63 // sync) login tokens to be used for auto-login in the Web Store (normally they
64 // do not). 64 // do not).
65 const char kAppsGalleryReturnTokens[] = "apps-gallery-return-tokens"; 65 const char kAppsGalleryReturnTokens[] = "apps-gallery-return-tokens";
66 66
67 // The URL to use for the gallery link in the app launcher. 67 // The URL to use for the gallery link in the app launcher.
68 const char kAppsGalleryURL[] = "apps-gallery-url"; 68 const char kAppsGalleryURL[] = "apps-gallery-url";
69 69
70 // The update url used by gallery/webstore extensions. 70 // The update url used by gallery/webstore extensions.
71 const char kAppsGalleryUpdateURL[] = "apps-gallery-update-url"; 71 const char kAppsGalleryUpdateURL[] = "apps-gallery-update-url";
72 72
73 // Whether to always use the new app install bubble when installing an app.
74 const char kAppsNewInstallBubble[] = "apps-new-install-bubble";
Matt Perry 2011/08/03 22:19:26 align the =
asargent_no_longer_on_chrome 2011/08/04 00:00:16 Done.
75
73 // Disable throbber for extension apps. 76 // Disable throbber for extension apps.
74 const char kAppsNoThrob[] = "apps-no-throb"; 77 const char kAppsNoThrob[] = "apps-no-throb";
75 78
76 // Whitelist of servers that Negotiate will generate delegated Kerberos tickets 79 // Whitelist of servers that Negotiate will generate delegated Kerberos tickets
77 // for. 80 // for.
78 const char kAuthNegotiateDelegateWhitelist[] = 81 const char kAuthNegotiateDelegateWhitelist[] =
79 "auth-negotiate-delegate-whitelist"; 82 "auth-negotiate-delegate-whitelist";
80 83
81 // HTTP authentication schemes to enable. This is a comma separated list 84 // HTTP authentication schemes to enable. This is a comma separated list
82 // of authentication schemes (basic, digest, ntlm, and negotiate). By default 85 // of authentication schemes (basic, digest, ntlm, and negotiate). By default
(...skipping 1153 matching lines...) Expand 10 before | Expand all | Expand 10 after
1236 1239
1237 // ----------------------------------------------------------------------------- 1240 // -----------------------------------------------------------------------------
1238 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1241 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1239 // 1242 //
1240 // You were going to just dump your switches here, weren't you? Instead, 1243 // You were going to just dump your switches here, weren't you? Instead,
1241 // please put them in alphabetical order above, or in order inside the 1244 // please put them in alphabetical order above, or in order inside the
1242 // appropriate ifdef at the bottom. The order should match the header. 1245 // appropriate ifdef at the bottom. The order should match the header.
1243 // ----------------------------------------------------------------------------- 1246 // -----------------------------------------------------------------------------
1244 1247
1245 } // namespace switches 1248 } // namespace switches
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698