| 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 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 109 // as a dependent process of the Chrome Frame plugin. | 109 // as a dependent process of the Chrome Frame plugin. |
| 110 const char kChromeFrame[] = "chrome-frame"; | 110 const char kChromeFrame[] = "chrome-frame"; |
| 111 | 111 |
| 112 // Tells chrome to load the specified version of chrome.dll on Windows. If | 112 // Tells chrome to load the specified version of chrome.dll on Windows. If |
| 113 // this version cannot be loaded, Chrome will exit. | 113 // this version cannot be loaded, Chrome will exit. |
| 114 const char kChromeVersion[] = "chrome-version"; | 114 const char kChromeVersion[] = "chrome-version"; |
| 115 | 115 |
| 116 // The unique id to be used for this cloud print proxy instance. | 116 // The unique id to be used for this cloud print proxy instance. |
| 117 const char kCloudPrintProxyId[] = "cloud-print-proxy-id"; | 117 const char kCloudPrintProxyId[] = "cloud-print-proxy-id"; |
| 118 | 118 |
| 119 // Tells chrome to display the cloud print dialog and upload the |
| 120 // specified file for printing. |
| 121 const char kCloudPrintFile[] = "cloud-print-file"; |
| 122 |
| 123 // Used with kCloudPrintFile to specify a title for the resulting print |
| 124 // job. |
| 125 const char kCloudPrintJobTitle[] = "cloud-print-job-title"; |
| 126 |
| 119 // The URL of the cloud print service to use, overrides any value | 127 // The URL of the cloud print service to use, overrides any value |
| 120 // stored in preferences, and the default. Only used if the cloud | 128 // stored in preferences, and the default. Only used if the cloud |
| 121 // print service has been enabled (see enable-cloud-print). | 129 // print service has been enabled (see enable-cloud-print). |
| 122 const char kCloudPrintServiceURL[] = "cloud-print-service"; | 130 const char kCloudPrintServiceURL[] = "cloud-print-service"; |
| 123 | 131 |
| 124 // Causes the browser process to inspect loaded and registered DLLs for | 132 // Causes the browser process to inspect loaded and registered DLLs for |
| 125 // known conflicts and warn the user. | 133 // known conflicts and warn the user. |
| 126 const char kConflictingModulesCheck[] = "conflicting-modules-check"; | 134 const char kConflictingModulesCheck[] = "conflicting-modules-check"; |
| 127 | 135 |
| 128 // The Country we should use. This is normally obtained from the operating | 136 // The Country we should use. This is normally obtained from the operating |
| (...skipping 1265 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1394 | 1402 |
| 1395 // ----------------------------------------------------------------------------- | 1403 // ----------------------------------------------------------------------------- |
| 1396 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1404 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1397 // | 1405 // |
| 1398 // You were going to just dump your switches here, weren't you? Instead, | 1406 // You were going to just dump your switches here, weren't you? Instead, |
| 1399 // please put them in alphabetical order above, or in order inside the | 1407 // please put them in alphabetical order above, or in order inside the |
| 1400 // appropriate ifdef at the bottom. The order should match the header. | 1408 // appropriate ifdef at the bottom. The order should match the header. |
| 1401 // ----------------------------------------------------------------------------- | 1409 // ----------------------------------------------------------------------------- |
| 1402 | 1410 |
| 1403 } // namespace switches | 1411 } // namespace switches |
| OLD | NEW |