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

Unified Diff: printing/backend/print_backend_chromeos.cc

Issue 9618032: GetPrinterDriverInfo returns string. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 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 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 ac62d90288416ddeb99ed0be30e45467d1eba41b..b06683e823996337bf43435ae0bace8185a6c714 100644
--- a/printing/backend/print_backend_chromeos.cc
+++ b/printing/backend/print_backend_chromeos.cc
@@ -23,7 +23,7 @@ class PrintBackendChromeOS : public PrintBackend {
PrinterCapsAndDefaults* printer_info);
virtual bool GetPrinterDriverInfo(const std::string& printer_name,
- PrinterDriverInfo* driver_info);
+ std::string* driver_info);
virtual bool IsValidPrinter(const std::string& printer_name);
@@ -45,9 +45,8 @@ bool PrintBackendChromeOS::GetPrinterCapsAndDefaults(
return false;
}
-bool PrintBackendChromeOS::GetPrinterDriverInfo(
- const std::string& printer_name,
- PrinterDriverInfo* driver_info) {
+bool PrintBackendChromeOS::GetPrinterDriverInfo(const std::string& printer_name,
+ std::string* driver_info) {
NOTREACHED();
return false;
}
« 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