| 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 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 104 | 104 |
| 105 // Value of OAuth2 refresh token for --force-app-mode. | 105 // Value of OAuth2 refresh token for --force-app-mode. |
| 106 const char kAppModeOAuth2Token[] = "app-mode-oauth-token"; | 106 const char kAppModeOAuth2Token[] = "app-mode-oauth-token"; |
| 107 | 107 |
| 108 // Enables overriding the path for the default authentication extension. | 108 // Enables overriding the path for the default authentication extension. |
| 109 const char kAuthExtensionPath[] = "auth-ext-path"; | 109 const char kAuthExtensionPath[] = "auth-ext-path"; |
| 110 | 110 |
| 111 // Whitelist for Negotiate Auth servers | 111 // Whitelist for Negotiate Auth servers |
| 112 const char kAuthServerWhitelist[] = "auth-server-whitelist"; | 112 const char kAuthServerWhitelist[] = "auth-server-whitelist"; |
| 113 | 113 |
| 114 // A flag that is used to tell Chrome that it was launched automatically at | |
| 115 // computer startup and not by some user action. | |
| 116 const char kAutoLaunchAtStartup[] = "auto-launch-at-startup"; | |
| 117 | |
| 118 // This flag makes Chrome auto-select the provided choice when an extension asks | 114 // This flag makes Chrome auto-select the provided choice when an extension asks |
| 119 // permission to start desktop capture. Should only be used for tests. For | 115 // permission to start desktop capture. Should only be used for tests. For |
| 120 // instance, --auto-select-desktop-capture-source="Entire screen" will | 116 // instance, --auto-select-desktop-capture-source="Entire screen" will |
| 121 // automatically select to share the entire screen in English locales. | 117 // automatically select to share the entire screen in English locales. |
| 122 const char kAutoSelectDesktopCaptureSource[] = | 118 const char kAutoSelectDesktopCaptureSource[] = |
| 123 "auto-select-desktop-capture-source"; | 119 "auto-select-desktop-capture-source"; |
| 124 | 120 |
| 125 // This flag causes the user engagement checks for showing app banners to be | 121 // This flag causes the user engagement checks for showing app banners to be |
| 126 // bypassed. It is intended to be used by developers who wish to test that their | 122 // bypassed. It is intended to be used by developers who wish to test that their |
| 127 // sites otherwise meet the criteria needed to show app banners. | 123 // sites otherwise meet the criteria needed to show app banners. |
| (...skipping 1253 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1381 | 1377 |
| 1382 // ----------------------------------------------------------------------------- | 1378 // ----------------------------------------------------------------------------- |
| 1383 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1379 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1384 // | 1380 // |
| 1385 // You were going to just dump your switches here, weren't you? Instead, please | 1381 // You were going to just dump your switches here, weren't you? Instead, please |
| 1386 // put them in alphabetical order above, or in order inside the appropriate | 1382 // put them in alphabetical order above, or in order inside the appropriate |
| 1387 // ifdef at the bottom. The order should match the header. | 1383 // ifdef at the bottom. The order should match the header. |
| 1388 // ----------------------------------------------------------------------------- | 1384 // ----------------------------------------------------------------------------- |
| 1389 | 1385 |
| 1390 } // namespace switches | 1386 } // namespace switches |
| OLD | NEW |