| 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 1189 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1200 | 1200 |
| 1201 // Specifies the version of QUIC to use. | 1201 // Specifies the version of QUIC to use. |
| 1202 const char kQuicVersion[] = "quic-version"; | 1202 const char kQuicVersion[] = "quic-version"; |
| 1203 | 1203 |
| 1204 // Chrome supports a playback and record mode. Record mode saves *everything* | 1204 // Chrome supports a playback and record mode. Record mode saves *everything* |
| 1205 // to the cache. Playback mode reads data exclusively from the cache. This | 1205 // to the cache. Playback mode reads data exclusively from the cache. This |
| 1206 // allows us to record a session into the cache and then replay it at will. | 1206 // allows us to record a session into the cache and then replay it at will. |
| 1207 // See also kPlaybackMode. | 1207 // See also kPlaybackMode. |
| 1208 const char kRecordMode[] = "record-mode"; | 1208 const char kRecordMode[] = "record-mode"; |
| 1209 | 1209 |
| 1210 // Uses custom front-end URL for the remote debugging. | |
| 1211 const char kRemoteDebuggingFrontend[] = "remote-debugging-frontend"; | |
| 1212 | |
| 1213 // Enables print preview in the renderer. This flag is generated internally by | 1210 // Enables print preview in the renderer. This flag is generated internally by |
| 1214 // Chrome and does nothing when directly passed to the browser. | 1211 // Chrome and does nothing when directly passed to the browser. |
| 1215 const char kRendererPrintPreview[] = "renderer-print-preview"; | 1212 const char kRendererPrintPreview[] = "renderer-print-preview"; |
| 1216 | 1213 |
| 1217 // If set, the app list will forget it has been installed on startup. Note this | 1214 // If set, the app list will forget it has been installed on startup. Note this |
| 1218 // doesn't prevent the app list from running, it just makes Chrome think the app | 1215 // doesn't prevent the app list from running, it just makes Chrome think the app |
| 1219 // list hasn't been enabled (as in kEnableAppList) yet. | 1216 // list hasn't been enabled (as in kEnableAppList) yet. |
| 1220 const char kResetAppListInstallState[] = "reset-app-list-install-state"; | 1217 const char kResetAppListInstallState[] = "reset-app-list-install-state"; |
| 1221 | 1218 |
| 1222 // Forces a reset of the one-time-randomized FieldTrials on this client, also | 1219 // Forces a reset of the one-time-randomized FieldTrials on this client, also |
| (...skipping 396 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1619 | 1616 |
| 1620 // ----------------------------------------------------------------------------- | 1617 // ----------------------------------------------------------------------------- |
| 1621 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1618 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1622 // | 1619 // |
| 1623 // You were going to just dump your switches here, weren't you? Instead, please | 1620 // You were going to just dump your switches here, weren't you? Instead, please |
| 1624 // put them in alphabetical order above, or in order inside the appropriate | 1621 // put them in alphabetical order above, or in order inside the appropriate |
| 1625 // ifdef at the bottom. The order should match the header. | 1622 // ifdef at the bottom. The order should match the header. |
| 1626 // ----------------------------------------------------------------------------- | 1623 // ----------------------------------------------------------------------------- |
| 1627 | 1624 |
| 1628 } // namespace switches | 1625 } // namespace switches |
| OLD | NEW |