OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 132 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
143 | 143 |
144 // The Country we should use. This is normally obtained from the operating | 144 // The Country we should use. This is normally obtained from the operating |
145 // system during first run and cached in the preferences afterwards. This is a | 145 // system during first run and cached in the preferences afterwards. This is a |
146 // string value, the 2 letter code from ISO 3166-1. | 146 // string value, the 2 letter code from ISO 3166-1. |
147 const char kCountry[] = "country"; | 147 const char kCountry[] = "country"; |
148 | 148 |
149 // Path to the inspector files on disk (allows reloading of devtool files | 149 // Path to the inspector files on disk (allows reloading of devtool files |
150 // without having to restart the browser). | 150 // without having to restart the browser). |
151 const char kDebugDevToolsFrontend[] = "debug-devtools-frontend"; | 151 const char kDebugDevToolsFrontend[] = "debug-devtools-frontend"; |
152 | 152 |
153 // Enables a frame context menu item that toggles the frame in and out of glass | |
154 // mode (Windows Vista and up only). | |
155 const char kDebugEnableFrameToggle[] = "debug-enable-frame-toggle"; | |
156 | |
157 // Enables support to debug printing subsystem. | 153 // Enables support to debug printing subsystem. |
158 const char kDebugPrint[] = "debug-print"; | 154 const char kDebugPrint[] = "debug-print"; |
159 | 155 |
160 // Specifies the URL at which to fetch configuration policy from the device | 156 // Specifies the URL at which to fetch configuration policy from the device |
161 // management backend. Specifying this switch turns on managed policy from the | 157 // management backend. Specifying this switch turns on managed policy from the |
162 // device management backend. | 158 // device management backend. |
163 const char kDeviceManagementUrl[] = "device-management-url"; | 159 const char kDeviceManagementUrl[] = "device-management-url"; |
164 | 160 |
165 // Triggers a pletora of diagnostic modes. | 161 // Triggers a pletora of diagnostic modes. |
166 const char kDiagnostics[] = "diagnostics"; | 162 const char kDiagnostics[] = "diagnostics"; |
(...skipping 1015 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1182 | 1178 |
1183 // ----------------------------------------------------------------------------- | 1179 // ----------------------------------------------------------------------------- |
1184 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1180 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1185 // | 1181 // |
1186 // You were going to just dump your switches here, weren't you? Instead, | 1182 // You were going to just dump your switches here, weren't you? Instead, |
1187 // please put them in alphabetical order above, or in order inside the | 1183 // please put them in alphabetical order above, or in order inside the |
1188 // appropriate ifdef at the bottom. The order should match the header. | 1184 // appropriate ifdef at the bottom. The order should match the header. |
1189 // ----------------------------------------------------------------------------- | 1185 // ----------------------------------------------------------------------------- |
1190 | 1186 |
1191 } // namespace switches | 1187 } // namespace switches |
OLD | NEW |