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

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

Issue 274313002: Remove --apps-new-install-bubble command line switch. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove a unnecessary header file. Created 6 years, 7 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
« 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 82 matching lines...) Expand 10 before | Expand all | Expand 10 after
93 93
94 // The update url used by gallery/webstore extensions. 94 // The update url used by gallery/webstore extensions.
95 const char kAppsGalleryUpdateURL[] = "apps-gallery-update-url"; 95 const char kAppsGalleryUpdateURL[] = "apps-gallery-update-url";
96 96
97 // Value of GAIA auth code for --force-app-mode. 97 // Value of GAIA auth code for --force-app-mode.
98 const char kAppModeAuthCode[] = "app-mode-auth-code"; 98 const char kAppModeAuthCode[] = "app-mode-auth-code";
99 99
100 // Value of OAuth2 refresh token for --force-app-mode. 100 // Value of OAuth2 refresh token for --force-app-mode.
101 const char kAppModeOAuth2Token[] = "app-mode-oauth-token"; 101 const char kAppModeOAuth2Token[] = "app-mode-oauth-token";
102 102
103 // Whether to always use the new app install bubble when installing an app.
104 const char kAppsNewInstallBubble[] = "apps-new-install-bubble";
105
106 // Experimental native frame support for packaged apps. 103 // Experimental native frame support for packaged apps.
107 const char kAppsUseNativeFrame[] = "apps-use-native-frame"; 104 const char kAppsUseNativeFrame[] = "apps-use-native-frame";
108 105
109 // Enables overriding the path for the default authentication extension. 106 // Enables overriding the path for the default authentication extension.
110 const char kAuthExtensionPath[] = "auth-ext-path"; 107 const char kAuthExtensionPath[] = "auth-ext-path";
111 108
112 // Whitelist of servers that Negotiate will generate delegated Kerberos tickets 109 // Whitelist of servers that Negotiate will generate delegated Kerberos tickets
113 // for. 110 // for.
114 const char kAuthNegotiateDelegateWhitelist[] = 111 const char kAuthNegotiateDelegateWhitelist[] =
115 "auth-negotiate-delegate-whitelist"; 112 "auth-negotiate-delegate-whitelist";
(...skipping 1355 matching lines...) Expand 10 before | Expand all | Expand 10 after
1471 1468
1472 // ----------------------------------------------------------------------------- 1469 // -----------------------------------------------------------------------------
1473 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1470 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1474 // 1471 //
1475 // You were going to just dump your switches here, weren't you? Instead, please 1472 // You were going to just dump your switches here, weren't you? Instead, please
1476 // put them in alphabetical order above, or in order inside the appropriate 1473 // put them in alphabetical order above, or in order inside the appropriate
1477 // ifdef at the bottom. The order should match the header. 1474 // ifdef at the bottom. The order should match the header.
1478 // ----------------------------------------------------------------------------- 1475 // -----------------------------------------------------------------------------
1479 1476
1480 } // namespace switches 1477 } // 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