| 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 #include "build/build_config.h" | 9 #include "build/build_config.h" |
| 10 | 10 |
| (...skipping 1052 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1063 | 1063 |
| 1064 // Prints version information and quits. | 1064 // Prints version information and quits. |
| 1065 const char kVersion[] = "version"; | 1065 const char kVersion[] = "version"; |
| 1066 | 1066 |
| 1067 // Specify the initial window position: --window-position=x,y | 1067 // Specify the initial window position: --window-position=x,y |
| 1068 const char kWindowPosition[] = "window-position"; | 1068 const char kWindowPosition[] = "window-position"; |
| 1069 | 1069 |
| 1070 // Specify the initial window size: --window-size=w,h | 1070 // Specify the initial window size: --window-size=w,h |
| 1071 const char kWindowSize[] = "window-size"; | 1071 const char kWindowSize[] = "window-size"; |
| 1072 | 1072 |
| 1073 // Specify the initial window workspace: --window-workspace=id |
| 1074 const char kWindowWorkspace[] = "window-workspace"; |
| 1075 |
| 1073 // Uses WinHTTP to fetch and evaluate PAC scripts. Otherwise the default is to | 1076 // Uses WinHTTP to fetch and evaluate PAC scripts. Otherwise the default is to |
| 1074 // use Chromium's network stack to fetch, and V8 to evaluate. | 1077 // use Chromium's network stack to fetch, and V8 to evaluate. |
| 1075 const char kWinHttpProxyResolver[] = "winhttp-proxy-resolver"; | 1078 const char kWinHttpProxyResolver[] = "winhttp-proxy-resolver"; |
| 1076 | 1079 |
| 1077 // Specifies which category option was clicked in the Windows Jumplist that | 1080 // Specifies which category option was clicked in the Windows Jumplist that |
| 1078 // resulted in a browser startup. | 1081 // resulted in a browser startup. |
| 1079 const char kWinJumplistAction[] = "win-jumplist-action"; | 1082 const char kWinJumplistAction[] = "win-jumplist-action"; |
| 1080 | 1083 |
| 1081 #if defined(OS_ANDROID) | 1084 #if defined(OS_ANDROID) |
| 1082 // Android authentication account type for SPNEGO authentication | 1085 // Android authentication account type for SPNEGO authentication |
| (...skipping 269 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1352 | 1355 |
| 1353 // ----------------------------------------------------------------------------- | 1356 // ----------------------------------------------------------------------------- |
| 1354 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1357 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1355 // | 1358 // |
| 1356 // You were going to just dump your switches here, weren't you? Instead, please | 1359 // You were going to just dump your switches here, weren't you? Instead, please |
| 1357 // put them in alphabetical order above, or in order inside the appropriate | 1360 // put them in alphabetical order above, or in order inside the appropriate |
| 1358 // ifdef at the bottom. The order should match the header. | 1361 // ifdef at the bottom. The order should match the header. |
| 1359 // ----------------------------------------------------------------------------- | 1362 // ----------------------------------------------------------------------------- |
| 1360 | 1363 |
| 1361 } // namespace switches | 1364 } // namespace switches |
| OLD | NEW |