| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 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 | 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 "cloud_print/virtual_driver/virtual_driver_switches.h" | 5 #include "cloud_print/virtual_driver/virtual_driver_switches.h" |
| 6 | 6 |
| 7 namespace switches { | 7 namespace switches { |
| 8 // Same value as as Chrome. |
| 9 const char kCloudPrintUserDataDir[] = "user-data-dir"; |
| 8 const char kCloudPrintDeleteFile[] = "cloud-print-delete-file"; | 10 const char kCloudPrintDeleteFile[] = "cloud-print-delete-file"; |
| 9 const char kCloudPrintFile[] = "cloud-print-file"; | 11 const char kCloudPrintFile[] = "cloud-print-file"; |
| 10 const char kCloudPrintJobTitle[] = "cloud-print-job-title"; | 12 const char kCloudPrintJobTitle[] = "cloud-print-job-title"; |
| 11 const char kCloudPrintFileType[] = "cloud-print-file-type"; | 13 const char kCloudPrintFileType[] = "cloud-print-file-type"; |
| 12 const char kCloudPrintPrintTicket[] = "cloud-print-print-ticket"; | 14 const char kCloudPrintPrintTicket[] = "cloud-print-print-ticket"; |
| 13 } // namespace switches | 15 } // namespace switches |
| 14 | 16 |
| OLD | NEW |