| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 446 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 457 const char kEnablePredictiveInstant[] = "enable-predictive-instant"; | 457 const char kEnablePredictiveInstant[] = "enable-predictive-instant"; |
| 458 | 458 |
| 459 // This applies only when the process type is "service". Enables the | 459 // This applies only when the process type is "service". Enables the |
| 460 // Chromoting Host Process within the service process. | 460 // Chromoting Host Process within the service process. |
| 461 const char kEnableRemoting[] = "enable-remoting"; | 461 const char kEnableRemoting[] = "enable-remoting"; |
| 462 | 462 |
| 463 // Enable content settings based on host *and* plug-in. | 463 // Enable content settings based on host *and* plug-in. |
| 464 const char kEnableResourceContentSettings[] = | 464 const char kEnableResourceContentSettings[] = |
| 465 "enable-resource-content-settings"; | 465 "enable-resource-content-settings"; |
| 466 | 466 |
| 467 // Enable speculative prerendering of pages. |
| 468 const char kEnablePagePrerender[] = "enable-page-prerender"; |
| 469 |
| 467 // Enable speculative TCP/IP preconnection. | 470 // Enable speculative TCP/IP preconnection. |
| 468 const char kEnablePreconnect[] = "enable-preconnect"; | 471 const char kEnablePreconnect[] = "enable-preconnect"; |
| 469 | 472 |
| 470 // Enable caching of pre-parsed JS script data. See http://crbug.com/32407. | 473 // Enable caching of pre-parsed JS script data. See http://crbug.com/32407. |
| 471 const char kEnablePreparsedJsCaching[] = "enable-preparsed-js-caching"; | 474 const char kEnablePreparsedJsCaching[] = "enable-preparsed-js-caching"; |
| 472 | 475 |
| 473 // Enable print preview (work in progress). | 476 // Enable print preview (work in progress). |
| 474 const char kEnablePrintPreview[] = "enable-print-preview"; | 477 const char kEnablePrintPreview[] = "enable-print-preview"; |
| 475 | 478 |
| 476 // Enable the IsSearchProviderInstalled and InstallSearchProvider with an extra | 479 // Enable the IsSearchProviderInstalled and InstallSearchProvider with an extra |
| (...skipping 786 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1263 | 1266 |
| 1264 // ----------------------------------------------------------------------------- | 1267 // ----------------------------------------------------------------------------- |
| 1265 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1268 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1266 // | 1269 // |
| 1267 // You were going to just dump your switches here, weren't you? Instead, | 1270 // You were going to just dump your switches here, weren't you? Instead, |
| 1268 // please put them in alphabetical order above, or in order inside the | 1271 // please put them in alphabetical order above, or in order inside the |
| 1269 // appropriate ifdef at the bottom. The order should match the header. | 1272 // appropriate ifdef at the bottom. The order should match the header. |
| 1270 // ----------------------------------------------------------------------------- | 1273 // ----------------------------------------------------------------------------- |
| 1271 | 1274 |
| 1272 } // namespace switches | 1275 } // namespace switches |
| OLD | NEW |