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

Unified Diff: chrome/browser/printing/print_system_task_proxy.cc

Issue 11428058: Don't return false if PRINTER_INFO_9 is not available. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 1 month 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 | « no previous file | printing/backend/print_backend_win.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/printing/print_system_task_proxy.cc
diff --git a/chrome/browser/printing/print_system_task_proxy.cc b/chrome/browser/printing/print_system_task_proxy.cc
index 16f6e5453c6e2ae68bfbd60958292878bff096da..a7fc80f14e302e1d79431ffe88ba3f9bef9c0105 100644
--- a/chrome/browser/printing/print_system_task_proxy.cc
+++ b/chrome/browser/printing/print_system_task_proxy.cc
@@ -127,7 +127,7 @@ void PrintSystemTaskProxy::GetPrinterCapabilities(
printing::PrinterSemanticCapsAndDefaults info;
if (!print_backend_->GetPrinterSemanticCapsAndDefaults(printer_name, &info)) {
- VLOG(1) << "Failed to get capabilities for " << printer_name;
+ LOG(WARNING) << "Failed to get capabilities for " << printer_name;
BrowserThread::PostTask(
BrowserThread::UI, FROM_HERE,
base::Bind(&PrintSystemTaskProxy::SendFailedToGetPrinterCapabilities,
« no previous file with comments | « no previous file | printing/backend/print_backend_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698