| 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 1183 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1194 // Specify the initial window position: --window-position=x,y | 1194 // Specify the initial window position: --window-position=x,y |
| 1195 const char kWindowPosition[] = "window-position"; | 1195 const char kWindowPosition[] = "window-position"; |
| 1196 | 1196 |
| 1197 // Specify the initial window size: --window-size=w,h | 1197 // Specify the initial window size: --window-size=w,h |
| 1198 const char kWindowSize[] = "window-size"; | 1198 const char kWindowSize[] = "window-size"; |
| 1199 | 1199 |
| 1200 // Uses WinHTTP to fetch and evaluate PAC scripts. Otherwise the default is to | 1200 // Uses WinHTTP to fetch and evaluate PAC scripts. Otherwise the default is to |
| 1201 // use Chromium's network stack to fetch, and V8 to evaluate. | 1201 // use Chromium's network stack to fetch, and V8 to evaluate. |
| 1202 const char kWinHttpProxyResolver[] = "winhttp-proxy-resolver"; | 1202 const char kWinHttpProxyResolver[] = "winhttp-proxy-resolver"; |
| 1203 | 1203 |
| 1204 // Shows a memory consumption status area widget for OOM debugging. | |
| 1205 const char kMemoryWidget[] = "memory-widget"; | |
| 1206 | |
| 1207 #if defined(OS_CHROMEOS) | 1204 #if defined(OS_CHROMEOS) |
| 1208 // Disables gdata content provider. | 1205 // Disables gdata content provider. |
| 1209 const char kDisableGData[] = "disable-gdata"; | 1206 const char kDisableGData[] = "disable-gdata"; |
| 1210 | 1207 |
| 1211 // Skips OAuth part of ChromeOS login process. | 1208 // Skips OAuth part of ChromeOS login process. |
| 1212 const char kSkipOAuthLogin[] = "skip-oauth-login"; | 1209 const char kSkipOAuthLogin[] = "skip-oauth-login"; |
| 1213 | 1210 |
| 1214 // Enables device policy support on ChromeOS. | 1211 // Enables device policy support on ChromeOS. |
| 1215 const char kEnableDevicePolicy[] = "enable-device-policy"; | 1212 const char kEnableDevicePolicy[] = "enable-device-policy"; |
| 1216 | 1213 |
| (...skipping 167 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1384 | 1381 |
| 1385 // ----------------------------------------------------------------------------- | 1382 // ----------------------------------------------------------------------------- |
| 1386 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1383 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1387 // | 1384 // |
| 1388 // You were going to just dump your switches here, weren't you? Instead, please | 1385 // You were going to just dump your switches here, weren't you? Instead, please |
| 1389 // put them in alphabetical order above, or in order inside the appropriate | 1386 // put them in alphabetical order above, or in order inside the appropriate |
| 1390 // ifdef at the bottom. The order should match the header. | 1387 // ifdef at the bottom. The order should match the header. |
| 1391 // ----------------------------------------------------------------------------- | 1388 // ----------------------------------------------------------------------------- |
| 1392 | 1389 |
| 1393 } // namespace switches | 1390 } // namespace switches |
| OLD | NEW |