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

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

Issue 12704002: Support for auth code based authentication flow for both app and web UI driven flow. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 7 years, 9 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 75 matching lines...) Expand 10 before | Expand all | Expand 10 after
86 // cancelled. 86 // cancelled.
87 const char kAppsGalleryInstallAutoConfirmForTests[] = 87 const char kAppsGalleryInstallAutoConfirmForTests[] =
88 "apps-gallery-install-auto-confirm-for-tests"; 88 "apps-gallery-install-auto-confirm-for-tests";
89 89
90 // The URL to use for the gallery link in the app launcher. 90 // The URL to use for the gallery link in the app launcher.
91 const char kAppsGalleryURL[] = "apps-gallery-url"; 91 const char kAppsGalleryURL[] = "apps-gallery-url";
92 92
93 // The update url used by gallery/webstore extensions. 93 // The update url used by gallery/webstore extensions.
94 const char kAppsGalleryUpdateURL[] = "apps-gallery-update-url"; 94 const char kAppsGalleryUpdateURL[] = "apps-gallery-update-url";
95 95
96 // Value of GAIA auth code for --force-app-mode.
97 const char kAppModeAuthCode[] = "app-mode-auth-code";
xiyuan 2013/03/20 20:08:29 nit: align '=' with other lines.
zel 2013/03/20 21:03:38 Done.
98
96 // Value of OAuth2 refresh token for --force-app-mode. 99 // Value of OAuth2 refresh token for --force-app-mode.
97 const char kAppModeOAuth2Token[] = "app-mode-oauth-token"; 100 const char kAppModeOAuth2Token[] = "app-mode-oauth-token";
98 101
99 // Whether to always use the new app install bubble when installing an app. 102 // Whether to always use the new app install bubble when installing an app.
100 const char kAppsNewInstallBubble[] = "apps-new-install-bubble"; 103 const char kAppsNewInstallBubble[] = "apps-new-install-bubble";
101 104
102 // Disable throbber for extension apps. 105 // Disable throbber for extension apps.
103 const char kAppsNoThrob[] = "apps-no-throb"; 106 const char kAppsNoThrob[] = "apps-no-throb";
104 107
105 // Whitelist of servers that Negotiate will generate delegated Kerberos tickets 108 // Whitelist of servers that Negotiate will generate delegated Kerberos tickets
(...skipping 1565 matching lines...) Expand 10 before | Expand all | Expand 10 after
1671 1674
1672 // ----------------------------------------------------------------------------- 1675 // -----------------------------------------------------------------------------
1673 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1676 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1674 // 1677 //
1675 // You were going to just dump your switches here, weren't you? Instead, please 1678 // You were going to just dump your switches here, weren't you? Instead, please
1676 // put them in alphabetical order above, or in order inside the appropriate 1679 // put them in alphabetical order above, or in order inside the appropriate
1677 // ifdef at the bottom. The order should match the header. 1680 // ifdef at the bottom. The order should match the header.
1678 // ----------------------------------------------------------------------------- 1681 // -----------------------------------------------------------------------------
1679 1682
1680 } // namespace switches 1683 } // namespace switches
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698