Index: chrome/service/cloud_print/print_system_cups.cc |
diff --git a/chrome/service/cloud_print/print_system_cups.cc b/chrome/service/cloud_print/print_system_cups.cc |
index 9b148617a2d6e84c8b538ed9ce383f0f56859c8b..9b3ec232d4ebb58c1f4cbc1e524b4357fe5e4344 100644 |
--- a/chrome/service/cloud_print/print_system_cups.cc |
+++ b/chrome/service/cloud_print/print_system_cups.cc |
@@ -96,6 +96,7 @@ class PrintSystemCUPS : public PrintSystem { |
virtual PrintSystem::PrinterWatcher* CreatePrinterWatcher( |
const std::string& printer_name) OVERRIDE; |
virtual PrintSystem::JobSpooler* CreateJobSpooler() OVERRIDE; |
+ virtual bool UseCddAndCjt() OVERRIDE; |
virtual std::string GetSupportedMimeTypes() OVERRIDE; |
// Helper functions. |
@@ -728,6 +729,10 @@ PrintSystem::JobSpooler* PrintSystemCUPS::CreateJobSpooler() { |
return new JobSpoolerCUPS(this); |
} |
+bool PrintSystemCUPS::UseCddAndCjt() { |
+ return false; |
+} |
+ |
std::string PrintSystemCUPS::GetSupportedMimeTypes() { |
return supported_mime_types_; |
} |