| 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 1212 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1223 | 1223 |
| 1224 // Specifies the version of QUIC to use. | 1224 // Specifies the version of QUIC to use. |
| 1225 const char kQuicVersion[] = "quic-version"; | 1225 const char kQuicVersion[] = "quic-version"; |
| 1226 | 1226 |
| 1227 // Chrome supports a playback and record mode. Record mode saves *everything* | 1227 // Chrome supports a playback and record mode. Record mode saves *everything* |
| 1228 // to the cache. Playback mode reads data exclusively from the cache. This | 1228 // to the cache. Playback mode reads data exclusively from the cache. This |
| 1229 // allows us to record a session into the cache and then replay it at will. | 1229 // allows us to record a session into the cache and then replay it at will. |
| 1230 // See also kPlaybackMode. | 1230 // See also kPlaybackMode. |
| 1231 const char kRecordMode[] = "record-mode"; | 1231 const char kRecordMode[] = "record-mode"; |
| 1232 | 1232 |
| 1233 // Uses custom front-end URL for the remote debugging. | |
| 1234 const char kRemoteDebuggingFrontend[] = "remote-debugging-frontend"; | |
| 1235 | |
| 1236 // Enables print preview in the renderer. This flag is generated internally by | 1233 // Enables print preview in the renderer. This flag is generated internally by |
| 1237 // Chrome and does nothing when directly passed to the browser. | 1234 // Chrome and does nothing when directly passed to the browser. |
| 1238 const char kRendererPrintPreview[] = "renderer-print-preview"; | 1235 const char kRendererPrintPreview[] = "renderer-print-preview"; |
| 1239 | 1236 |
| 1240 // If set, the app list will forget it has been installed on startup. Note this | 1237 // If set, the app list will forget it has been installed on startup. Note this |
| 1241 // doesn't prevent the app list from running, it just makes Chrome think the app | 1238 // doesn't prevent the app list from running, it just makes Chrome think the app |
| 1242 // list hasn't been enabled (as in kEnableAppList) yet. | 1239 // list hasn't been enabled (as in kEnableAppList) yet. |
| 1243 const char kResetAppListInstallState[] = "reset-app-list-install-state"; | 1240 const char kResetAppListInstallState[] = "reset-app-list-install-state"; |
| 1244 | 1241 |
| 1245 // Forces a reset of the one-time-randomized FieldTrials on this client, also | 1242 // Forces a reset of the one-time-randomized FieldTrials on this client, also |
| (...skipping 390 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1636 | 1633 |
| 1637 // ----------------------------------------------------------------------------- | 1634 // ----------------------------------------------------------------------------- |
| 1638 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1635 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1639 // | 1636 // |
| 1640 // You were going to just dump your switches here, weren't you? Instead, please | 1637 // You were going to just dump your switches here, weren't you? Instead, please |
| 1641 // put them in alphabetical order above, or in order inside the appropriate | 1638 // put them in alphabetical order above, or in order inside the appropriate |
| 1642 // ifdef at the bottom. The order should match the header. | 1639 // ifdef at the bottom. The order should match the header. |
| 1643 // ----------------------------------------------------------------------------- | 1640 // ----------------------------------------------------------------------------- |
| 1644 | 1641 |
| 1645 } // namespace switches | 1642 } // namespace switches |
| OLD | NEW |