Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(382)

Side by Side Diff: chrome/common/chrome_switches.cc

Issue 12769009: Pass list of printers to chrome using file. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome/common/chrome_switches.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 156 matching lines...) Expand 10 before | Expand all | Expand 10 after
167 // unspecified. 167 // unspecified.
168 const char kCloudPrintFileType[] = "cloud-print-file-type"; 168 const char kCloudPrintFileType[] = "cloud-print-file-type";
169 169
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 // Setup cloud print proxy for for provided printers. This does not start
178 // service or register proxy for autostart.
179 const char kCloudPrintConnectoEnablePrinters[] =
180 "cloud-print-connector-enable-printers";
181
177 // The URL of the cloud print service to use, overrides any value stored in 182 // The URL of the cloud print service to use, overrides any value stored in
178 // preferences, and the default. Only used if the cloud print service has been 183 // preferences, and the default. Only used if the cloud print service has been
179 // enabled (see enable-cloud-print). 184 // enabled (see enable-cloud-print).
180 const char kCloudPrintServiceURL[] = "cloud-print-service"; 185 const char kCloudPrintServiceURL[] = "cloud-print-service";
181 186
182 // Comma-separated options to troubleshoot the component updater. Only valid 187 // Comma-separated options to troubleshoot the component updater. Only valid
183 // for the browser process. 188 // for the browser process.
184 const char kComponentUpdaterDebug[] = "component-updater-debug"; 189 const char kComponentUpdaterDebug[] = "component-updater-debug";
185 190
186 // Causes the browser process to inspect loaded and registered DLLs for known 191 // Causes the browser process to inspect loaded and registered DLLs for known
(...skipping 1468 matching lines...) Expand 10 before | Expand all | Expand 10 after
1655 1660
1656 // ----------------------------------------------------------------------------- 1661 // -----------------------------------------------------------------------------
1657 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1662 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1658 // 1663 //
1659 // You were going to just dump your switches here, weren't you? Instead, please 1664 // 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 1665 // put them in alphabetical order above, or in order inside the appropriate
1661 // ifdef at the bottom. The order should match the header. 1666 // ifdef at the bottom. The order should match the header.
1662 // ----------------------------------------------------------------------------- 1667 // -----------------------------------------------------------------------------
1663 1668
1664 } // namespace switches 1669 } // namespace switches
OLDNEW
« no previous file with comments | « chrome/common/chrome_switches.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698