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

Unified Diff: printing/backend/print_backend_chromeos.cc

Issue 9516010: Added PrinterDriverInfo and PrintBackend::GetPrinterDriverInfo for windows. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Comments Created 8 years, 10 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « printing/backend/print_backend.cc ('k') | printing/backend/print_backend_cups.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: printing/backend/print_backend_chromeos.cc
diff --git a/printing/backend/print_backend_chromeos.cc b/printing/backend/print_backend_chromeos.cc
index c61bc1d69eb735cd7a857d4a4d61c5b5de767e09..5517154fe385dc8da4d4014675f7d04eaa333db2 100644
--- a/printing/backend/print_backend_chromeos.cc
+++ b/printing/backend/print_backend_chromeos.cc
@@ -22,6 +22,9 @@ class PrintBackendChromeOS : public PrintBackend {
virtual bool GetPrinterCapsAndDefaults(const std::string& printer_name,
PrinterCapsAndDefaults* printer_info);
+ virtual bool GetPrinterDriverInfo(const std::string& printer_name,
+ PrinterDriverInfo* driver_info);
+
virtual bool IsValidPrinter(const std::string& printer_name);
private:
@@ -42,6 +45,13 @@ bool PrintBackendChromeOS::GetPrinterCapsAndDefaults(
return false;
}
+bool PrintBackendChromeOS::GetPrinterDriverInfo(
+ const std::string& printer_name,
+ PrinterDriverInfo* driver_info) {
+ NOTREACHED();
+ return false;
+}
+
std::string PrintBackendChromeOS::GetDefaultPrinterName() {
return std::string();
}
« no previous file with comments | « printing/backend/print_backend.cc ('k') | printing/backend/print_backend_cups.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698