| 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 1029 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1040 // disabled: No prerendering or prefetching. | 1040 // disabled: No prerendering or prefetching. |
| 1041 const char kPrerenderModeSwitchValueDisabled[] = "disabled"; | 1041 const char kPrerenderModeSwitchValueDisabled[] = "disabled"; |
| 1042 // enabled: Both prerendering and prefetching. | 1042 // enabled: Both prerendering and prefetching. |
| 1043 const char kPrerenderModeSwitchValueEnabled[] = "enabled"; | 1043 const char kPrerenderModeSwitchValueEnabled[] = "enabled"; |
| 1044 // prefetch_only: No prerendering, but enables prefetching. | 1044 // prefetch_only: No prerendering, but enables prefetching. |
| 1045 const char kPrerenderModeSwitchValuePrefetchOnly[] = "prefetch_only"; | 1045 const char kPrerenderModeSwitchValuePrefetchOnly[] = "prefetch_only"; |
| 1046 | 1046 |
| 1047 // Enable conversion from vector to raster for any page. | 1047 // Enable conversion from vector to raster for any page. |
| 1048 const char kPrintRaster[] = "print-raster"; | 1048 const char kPrintRaster[] = "print-raster"; |
| 1049 | 1049 |
| 1050 // Disable saving the printer and settings between sessions. | |
| 1051 const char kPrintSettingsReset[] = "print-settings-reset"; | |
| 1052 | |
| 1053 // Outputs the product version information and quit. Used as an internal api to | 1050 // Outputs the product version information and quit. Used as an internal api to |
| 1054 // detect the installed version of Chrome on Linux. | 1051 // detect the installed version of Chrome on Linux. |
| 1055 const char kProductVersion[] = "product-version"; | 1052 const char kProductVersion[] = "product-version"; |
| 1056 | 1053 |
| 1057 // Selects directory of profile to associate with the first browser launched. | 1054 // Selects directory of profile to associate with the first browser launched. |
| 1058 const char kProfileDirectory[] = "profile-directory"; | 1055 const char kProfileDirectory[] = "profile-directory"; |
| 1059 | 1056 |
| 1060 // Enables the Windows profile desktop shortcuts feature. | 1057 // Enables the Windows profile desktop shortcuts feature. |
| 1061 const char kProfileDesktopShortcuts[] = "enable-profile-desktop-shortcuts"; | 1058 const char kProfileDesktopShortcuts[] = "enable-profile-desktop-shortcuts"; |
| 1062 | 1059 |
| (...skipping 509 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1572 | 1569 |
| 1573 // ----------------------------------------------------------------------------- | 1570 // ----------------------------------------------------------------------------- |
| 1574 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1571 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1575 // | 1572 // |
| 1576 // You were going to just dump your switches here, weren't you? Instead, please | 1573 // You were going to just dump your switches here, weren't you? Instead, please |
| 1577 // put them in alphabetical order above, or in order inside the appropriate | 1574 // put them in alphabetical order above, or in order inside the appropriate |
| 1578 // ifdef at the bottom. The order should match the header. | 1575 // ifdef at the bottom. The order should match the header. |
| 1579 // ----------------------------------------------------------------------------- | 1576 // ----------------------------------------------------------------------------- |
| 1580 | 1577 |
| 1581 } // namespace switches | 1578 } // namespace switches |
| OLD | NEW |