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