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 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
104 // as a dependent process of the Chrome Frame plugin. | 104 // as a dependent process of the Chrome Frame plugin. |
105 const char kChromeFrame[] = "chrome-frame"; | 105 const char kChromeFrame[] = "chrome-frame"; |
106 | 106 |
107 // Tells chrome to load the specified version of chrome.dll on Windows. If | 107 // Tells chrome to load the specified version of chrome.dll on Windows. If |
108 // this version cannot be loaded, Chrome will exit. | 108 // this version cannot be loaded, Chrome will exit. |
109 const char kChromeVersion[] = "chrome-version"; | 109 const char kChromeVersion[] = "chrome-version"; |
110 | 110 |
111 // The unique id to be used for this cloud print proxy instance. | 111 // The unique id to be used for this cloud print proxy instance. |
112 const char kCloudPrintProxyId[] = "cloud-print-proxy-id"; | 112 const char kCloudPrintProxyId[] = "cloud-print-proxy-id"; |
113 | 113 |
| 114 // Tells chrome to display the cloud print dialog and upload the |
| 115 // specified file for printing. |
| 116 const char kCloudPrintFile[] = "cloud-print-file"; |
| 117 |
| 118 // Used with kCloudPrintFile to specify a title for the resulting print |
| 119 // job. |
| 120 const char kCloudPrintJobTitle[] = "cloud-print-job-title"; |
| 121 |
114 // The URL of the cloud print service to use, overrides any value | 122 // The URL of the cloud print service to use, overrides any value |
115 // stored in preferences, and the default. Only used if the cloud | 123 // stored in preferences, and the default. Only used if the cloud |
116 // print service has been enabled (see enable-cloud-print). | 124 // print service has been enabled (see enable-cloud-print). |
117 const char kCloudPrintServiceURL[] = "cloud-print-service"; | 125 const char kCloudPrintServiceURL[] = "cloud-print-service"; |
118 | 126 |
119 // Causes the browser process to inspect loaded and registered DLLs for | 127 // Causes the browser process to inspect loaded and registered DLLs for |
120 // known conflicts and warn the user. | 128 // known conflicts and warn the user. |
121 const char kConflictingModulesCheck[] = "conflicting-modules-check"; | 129 const char kConflictingModulesCheck[] = "conflicting-modules-check"; |
122 | 130 |
123 // The Country we should use. This is normally obtained from the operating | 131 // The Country we should use. This is normally obtained from the operating |
(...skipping 1248 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1372 | 1380 |
1373 // ----------------------------------------------------------------------------- | 1381 // ----------------------------------------------------------------------------- |
1374 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1382 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1375 // | 1383 // |
1376 // You were going to just dump your switches here, weren't you? Instead, | 1384 // You were going to just dump your switches here, weren't you? Instead, |
1377 // please put them in alphabetical order above, or in order inside the | 1385 // please put them in alphabetical order above, or in order inside the |
1378 // appropriate ifdef at the bottom. The order should match the header. | 1386 // appropriate ifdef at the bottom. The order should match the header. |
1379 // ----------------------------------------------------------------------------- | 1387 // ----------------------------------------------------------------------------- |
1380 | 1388 |
1381 } // namespace switches | 1389 } // namespace switches |
OLD | NEW |