Chromium Code Reviews| 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 159 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 170 // Used with kCloudPrintFile to specify a JSON print ticket for the resulting | 170 // Used with kCloudPrintFile to specify a JSON print ticket for the resulting |
| 171 // print job. Defaults to null if unspecified. | 171 // print job. Defaults to null if unspecified. |
| 172 const char kCloudPrintPrintTicket[] = "cloud-print-print-ticket"; | 172 const char kCloudPrintPrintTicket[] = "cloud-print-print-ticket"; |
| 173 | 173 |
| 174 // Used with kCloudPrintFile to specify a title for the resulting print job. | 174 // Used with kCloudPrintFile to specify a title for the resulting print job. |
| 175 const char kCloudPrintJobTitle[] = "cloud-print-job-title"; | 175 const char kCloudPrintJobTitle[] = "cloud-print-job-title"; |
| 176 | 176 |
| 177 // The unique id to be used for this cloud print proxy instance. | 177 // The unique id to be used for this cloud print proxy instance. |
| 178 const char kCloudPrintProxyId[] = "cloud-print-proxy-id"; | 178 const char kCloudPrintProxyId[] = "cloud-print-proxy-id"; |
| 179 | 179 |
| 180 // Setup cloud print proxy for for provided printers. This does not start | |
| 181 // service or register proxy for autostart. | |
| 182 const char kCloudPrintAddPrinters[] = "cloud-print-add-printers"; | |
|
gene
2013/03/16 00:29:05
let's use different name, that is more explanatory
Vitaly Buka (NO REVIEWS)
2013/03/16 00:36:37
Done.
| |
| 183 | |
| 180 // The URL of the cloud print service to use, overrides any value stored in | 184 // The URL of the cloud print service to use, overrides any value stored in |
| 181 // preferences, and the default. Only used if the cloud print service has been | 185 // preferences, and the default. Only used if the cloud print service has been |
| 182 // enabled (see enable-cloud-print). | 186 // enabled (see enable-cloud-print). |
| 183 const char kCloudPrintServiceURL[] = "cloud-print-service"; | 187 const char kCloudPrintServiceURL[] = "cloud-print-service"; |
| 184 | 188 |
| 185 // Comma-separated options to troubleshoot the component updater. Only valid | 189 // Comma-separated options to troubleshoot the component updater. Only valid |
| 186 // for the browser process. | 190 // for the browser process. |
| 187 const char kComponentUpdaterDebug[] = "component-updater-debug"; | 191 const char kComponentUpdaterDebug[] = "component-updater-debug"; |
| 188 | 192 |
| 189 // Causes the browser process to inspect loaded and registered DLLs for known | 193 // Causes the browser process to inspect loaded and registered DLLs for known |
| (...skipping 1465 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1655 | 1659 |
| 1656 // ----------------------------------------------------------------------------- | 1660 // ----------------------------------------------------------------------------- |
| 1657 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1661 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1658 // | 1662 // |
| 1659 // You were going to just dump your switches here, weren't you? Instead, please | 1663 // You were going to just dump your switches here, weren't you? Instead, please |
| 1660 // put them in alphabetical order above, or in order inside the appropriate | 1664 // put them in alphabetical order above, or in order inside the appropriate |
| 1661 // ifdef at the bottom. The order should match the header. | 1665 // ifdef at the bottom. The order should match the header. |
| 1662 // ----------------------------------------------------------------------------- | 1666 // ----------------------------------------------------------------------------- |
| 1663 | 1667 |
| 1664 } // namespace switches | 1668 } // namespace switches |
| OLD | NEW |