| 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 1230 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1241 const char kWindowSize[] = "window-size"; | 1241 const char kWindowSize[] = "window-size"; |
| 1242 | 1242 |
| 1243 // Uses WinHTTP to fetch and evaluate PAC scripts. Otherwise the default is to | 1243 // Uses WinHTTP to fetch and evaluate PAC scripts. Otherwise the default is to |
| 1244 // use Chromium's network stack to fetch, and V8 to evaluate. | 1244 // use Chromium's network stack to fetch, and V8 to evaluate. |
| 1245 const char kWinHttpProxyResolver[] = "winhttp-proxy-resolver"; | 1245 const char kWinHttpProxyResolver[] = "winhttp-proxy-resolver"; |
| 1246 | 1246 |
| 1247 // Specifies which category option was clicked in the Windows Jumplist that | 1247 // Specifies which category option was clicked in the Windows Jumplist that |
| 1248 // resulted in a browser startup. | 1248 // resulted in a browser startup. |
| 1249 const char kWinJumplistAction[] = "win-jumplist-action"; | 1249 const char kWinJumplistAction[] = "win-jumplist-action"; |
| 1250 | 1250 |
| 1251 #if defined(ENABLE_PLUGIN_INSTALLATION) | |
| 1252 // Specifies a custom URL for fetching plug-ins metadata. Used for testing. | |
| 1253 const char kPluginsMetadataServerURL[] = "plugins-metadata-server-url"; | |
| 1254 #endif | |
| 1255 | |
| 1256 #if defined(OS_ANDROID) | 1251 #if defined(OS_ANDROID) |
| 1257 // Disables support for playing videos on Chromecast devices. | 1252 // Disables support for playing videos on Chromecast devices. |
| 1258 const char kDisableCast[] = "disable-cast"; | 1253 const char kDisableCast[] = "disable-cast"; |
| 1259 | 1254 |
| 1260 // Disables Contextual Search. | 1255 // Disables Contextual Search. |
| 1261 const char kDisableContextualSearch[] = "disable-contextual-search"; | 1256 const char kDisableContextualSearch[] = "disable-contextual-search"; |
| 1262 | 1257 |
| 1263 // Disables zero suggest experiment on Dev channel. | 1258 // Disables zero suggest experiment on Dev channel. |
| 1264 const char kDisableZeroSuggest[] = "disable-zero-suggest"; | 1259 const char kDisableZeroSuggest[] = "disable-zero-suggest"; |
| 1265 | 1260 |
| (...skipping 143 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1409 | 1404 |
| 1410 // ----------------------------------------------------------------------------- | 1405 // ----------------------------------------------------------------------------- |
| 1411 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1406 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1412 // | 1407 // |
| 1413 // You were going to just dump your switches here, weren't you? Instead, please | 1408 // You were going to just dump your switches here, weren't you? Instead, please |
| 1414 // put them in alphabetical order above, or in order inside the appropriate | 1409 // put them in alphabetical order above, or in order inside the appropriate |
| 1415 // ifdef at the bottom. The order should match the header. | 1410 // ifdef at the bottom. The order should match the header. |
| 1416 // ----------------------------------------------------------------------------- | 1411 // ----------------------------------------------------------------------------- |
| 1417 | 1412 |
| 1418 } // namespace switches | 1413 } // namespace switches |
| OLD | NEW |