Chromium Code Reviews| 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"; | |
|
sanjeevr
2011/01/11 21:39:55
Nit: Wondering if we should perhaps use another na
abodenha
2011/01/12 01:30:50
I'm not fond of the name either, but I'm having a
| |
| 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 1244 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1368 | 1376 |
| 1369 // ----------------------------------------------------------------------------- | 1377 // ----------------------------------------------------------------------------- |
| 1370 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1378 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1371 // | 1379 // |
| 1372 // You were going to just dump your switches here, weren't you? Instead, | 1380 // You were going to just dump your switches here, weren't you? Instead, |
| 1373 // please put them in alphabetical order above, or in order inside the | 1381 // please put them in alphabetical order above, or in order inside the |
| 1374 // appropriate ifdef at the bottom. The order should match the header. | 1382 // appropriate ifdef at the bottom. The order should match the header. |
| 1375 // ----------------------------------------------------------------------------- | 1383 // ----------------------------------------------------------------------------- |
| 1376 | 1384 |
| 1377 } // namespace switches | 1385 } // namespace switches |
| OLD | NEW |