OLD | NEW |
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 Loading... |
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 // Experimental native frame support for packaged apps. | |
104 const char kAppsUseNativeFrame[] = "apps-use-native-frame"; | |
105 | |
106 // Enables overriding the path for the default authentication extension. | 103 // Enables overriding the path for the default authentication extension. |
107 const char kAuthExtensionPath[] = "auth-ext-path"; | 104 const char kAuthExtensionPath[] = "auth-ext-path"; |
108 | 105 |
109 // Whitelist of servers that Negotiate will generate delegated Kerberos tickets | 106 // Whitelist of servers that Negotiate will generate delegated Kerberos tickets |
110 // for. | 107 // for. |
111 const char kAuthNegotiateDelegateWhitelist[] = | 108 const char kAuthNegotiateDelegateWhitelist[] = |
112 "auth-negotiate-delegate-whitelist"; | 109 "auth-negotiate-delegate-whitelist"; |
113 | 110 |
114 // HTTP authentication schemes to enable. This is a comma-separated list of | 111 // HTTP authentication schemes to enable. This is a comma-separated list of |
115 // authentication schemes (basic, digest, ntlm, and negotiate). By default all | 112 // authentication schemes (basic, digest, ntlm, and negotiate). By default all |
(...skipping 1304 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1420 | 1417 |
1421 // ----------------------------------------------------------------------------- | 1418 // ----------------------------------------------------------------------------- |
1422 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1419 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1423 // | 1420 // |
1424 // You were going to just dump your switches here, weren't you? Instead, please | 1421 // You were going to just dump your switches here, weren't you? Instead, please |
1425 // put them in alphabetical order above, or in order inside the appropriate | 1422 // put them in alphabetical order above, or in order inside the appropriate |
1426 // ifdef at the bottom. The order should match the header. | 1423 // ifdef at the bottom. The order should match the header. |
1427 // ----------------------------------------------------------------------------- | 1424 // ----------------------------------------------------------------------------- |
1428 | 1425 |
1429 } // namespace switches | 1426 } // namespace switches |
OLD | NEW |