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 1116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1127 // allows us to record a session into the cache and then replay it at will. | 1127 // allows us to record a session into the cache and then replay it at will. |
1128 // See also kPlaybackMode. | 1128 // See also kPlaybackMode. |
1129 const char kRecordMode[] = "record-mode"; | 1129 const char kRecordMode[] = "record-mode"; |
1130 | 1130 |
1131 // Reloads pages that have been killed when they are next focused by the user. | 1131 // Reloads pages that have been killed when they are next focused by the user. |
1132 const char kReloadKilledTabs[] = "reload-killed-tabs"; | 1132 const char kReloadKilledTabs[] = "reload-killed-tabs"; |
1133 | 1133 |
1134 // Uses custom front-end URL for the remote debugging. | 1134 // Uses custom front-end URL for the remote debugging. |
1135 const char kRemoteDebuggingFrontend[] = "remote-debugging-frontend"; | 1135 const char kRemoteDebuggingFrontend[] = "remote-debugging-frontend"; |
1136 | 1136 |
| 1137 // Enables remote debug over HTTP on the specified port. |
| 1138 const char kRemoteDebuggingPort[] = "remote-debugging-port"; |
| 1139 |
1137 // Enables print preview in the renderer. This flag is generated internally by | 1140 // Enables print preview in the renderer. This flag is generated internally by |
1138 // Chrome and does nothing when directly passed to the browser. | 1141 // Chrome and does nothing when directly passed to the browser. |
1139 const char kRendererPrintPreview[] = "renderer-print-preview"; | 1142 const char kRendererPrintPreview[] = "renderer-print-preview"; |
1140 | 1143 |
1141 // Forces a reset of the one-time-randomized FieldTrials on this client, also | 1144 // Forces a reset of the one-time-randomized FieldTrials on this client, also |
1142 // known as the Chrome Variations state. | 1145 // known as the Chrome Variations state. |
1143 const char kResetVariationState[] = "reset-variation-state"; | 1146 const char kResetVariationState[] = "reset-variation-state"; |
1144 | 1147 |
1145 // Indicates the last session should be restored on startup. This overrides the | 1148 // Indicates the last session should be restored on startup. This overrides the |
1146 // preferences value and is primarily intended for testing. The value of this | 1149 // preferences value and is primarily intended for testing. The value of this |
(...skipping 411 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1558 | 1561 |
1559 // ----------------------------------------------------------------------------- | 1562 // ----------------------------------------------------------------------------- |
1560 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1563 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1561 // | 1564 // |
1562 // You were going to just dump your switches here, weren't you? Instead, please | 1565 // You were going to just dump your switches here, weren't you? Instead, please |
1563 // put them in alphabetical order above, or in order inside the appropriate | 1566 // put them in alphabetical order above, or in order inside the appropriate |
1564 // ifdef at the bottom. The order should match the header. | 1567 // ifdef at the bottom. The order should match the header. |
1565 // ----------------------------------------------------------------------------- | 1568 // ----------------------------------------------------------------------------- |
1566 | 1569 |
1567 } // namespace switches | 1570 } // namespace switches |
OLD | NEW |