Index: chrome/service/cloud_print/print_system_cups.cc |
=================================================================== |
--- chrome/service/cloud_print/print_system_cups.cc (revision 69204) |
+++ chrome/service/cloud_print/print_system_cups.cc (working copy) |
@@ -622,6 +622,7 @@ |
return cupsPrintFile(name, filename, title, num_options, options); |
} else { |
printing::HttpConnectionCUPS http(url); |
+ http.SetBlocking(false); |
return cupsPrintFile2(http.http(), name, filename, |
title, num_options, options); |
} |
@@ -633,6 +634,7 @@ |
return cupsGetJobs(jobs, name, myjobs, whichjobs); |
} else { |
printing::HttpConnectionCUPS http(url); |
+ http.SetBlocking(false); |
return cupsGetJobs2(http.http(), jobs, name, myjobs, whichjobs); |
} |
} |