Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #ifndef CLOUD_PRINT_VIRTUAL_DRIVER_VIRTUAL_DRIVER_SWITCHES_H | |
| 6 #define CLOUD_PRINT_VIRTUAL_DRIVER_VIRTUAL_DRIVER_SWITCHES_H | |
| 7 #pragma once | |
| 8 | |
| 9 namespace switches { | |
| 10 // These constants are duplicated from chrome/common/chrome_switches.cc | |
| 11 // in order to avoid dependency problems. | |
| 12 // TODO(abodenha@chromium.org) Reunify them in some sensible manner. | |
|
Scott Byer
2011/07/11 22:11:57
Let's file a bug on this and add the http://crbug.
| |
| 13 | |
| 14 // Used with kCloudPrintFile. Tells Chrome to delete the file when | |
| 15 // finished displaying the print dialog. | |
| 16 extern const char kCloudPrintDeleteFile[]; | |
| 17 | |
| 18 // Tells chrome to display the cloud print dialog and upload the | |
| 19 // specified file for printing. | |
| 20 extern const char kCloudPrintFile[]; | |
| 21 | |
| 22 // Used with kCloudPrintFile to specify a title for the resulting print | |
| 23 // job. | |
| 24 extern const char kCloudPrintJobTitle[]; | |
| 25 | |
| 26 // Specifies the mime type to be used when uploading data from the | |
| 27 // file referenced by cloud-print-file. | |
| 28 // Defaults to "application/pdf" if unspecified. | |
| 29 extern const char kCloudPrintFileType[]; | |
| 30 } //namespace switches | |
| 31 | |
| 32 #endif // CLOUD_PRINT_VIRTUAL_DRIVER_VIRTUAL_DRIVER_SWITCHES_H | |
| OLD | NEW |