| 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 1170 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1181 const char kRemoteDebuggingFrontend[] = "remote-debugging-frontend"; | 1181 const char kRemoteDebuggingFrontend[] = "remote-debugging-frontend"; |
| 1182 | 1182 |
| 1183 // Does not show an infobar when an extension attaches to a page using | 1183 // Does not show an infobar when an extension attaches to a page using |
| 1184 // chrome.debugger page. Required to attach to extension background pages. | 1184 // chrome.debugger page. Required to attach to extension background pages. |
| 1185 const char kSilentDebuggerExtensionAPI[] = "silent-debugger-extension-api"; | 1185 const char kSilentDebuggerExtensionAPI[] = "silent-debugger-extension-api"; |
| 1186 | 1186 |
| 1187 // Enables print preview in the renderer. This flag is generated internally by | 1187 // Enables print preview in the renderer. This flag is generated internally by |
| 1188 // Chrome and does nothing when directly passed to the browser. | 1188 // Chrome and does nothing when directly passed to the browser. |
| 1189 const char kRendererPrintPreview[] = "renderer-print-preview"; | 1189 const char kRendererPrintPreview[] = "renderer-print-preview"; |
| 1190 | 1190 |
| 1191 // Forces a reset of the local passphrase of the managed user account, and | |
| 1192 // the managed user settings dialog is shown where a new passphrase can be set. | |
| 1193 const char kResetLocalPassphrase[] = "reset-local-passphrase"; | |
| 1194 | |
| 1195 // Forces a reset of the one-time-randomized FieldTrials on this client, also | 1191 // Forces a reset of the one-time-randomized FieldTrials on this client, also |
| 1196 // known as the Chrome Variations state. | 1192 // known as the Chrome Variations state. |
| 1197 const char kResetVariationState[] = "reset-variation-state"; | 1193 const char kResetVariationState[] = "reset-variation-state"; |
| 1198 | 1194 |
| 1199 // Indicates the last session should be restored on startup. This overrides the | 1195 // Indicates the last session should be restored on startup. This overrides the |
| 1200 // preferences value and is primarily intended for testing. The value of this | 1196 // preferences value and is primarily intended for testing. The value of this |
| 1201 // switch is the number of tabs to wait until loaded before 'load completed' is | 1197 // switch is the number of tabs to wait until loaded before 'load completed' is |
| 1202 // sent to the ui_test. | 1198 // sent to the ui_test. |
| 1203 const char kRestoreLastSession[] = "restore-last-session"; | 1199 const char kRestoreLastSession[] = "restore-last-session"; |
| 1204 | 1200 |
| (...skipping 383 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1588 | 1584 |
| 1589 // ----------------------------------------------------------------------------- | 1585 // ----------------------------------------------------------------------------- |
| 1590 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1586 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1591 // | 1587 // |
| 1592 // You were going to just dump your switches here, weren't you? Instead, please | 1588 // You were going to just dump your switches here, weren't you? Instead, please |
| 1593 // put them in alphabetical order above, or in order inside the appropriate | 1589 // put them in alphabetical order above, or in order inside the appropriate |
| 1594 // ifdef at the bottom. The order should match the header. | 1590 // ifdef at the bottom. The order should match the header. |
| 1595 // ----------------------------------------------------------------------------- | 1591 // ----------------------------------------------------------------------------- |
| 1596 | 1592 |
| 1597 } // namespace switches | 1593 } // namespace switches |
| OLD | NEW |