| Index: chrome/service/cloud_print/cloud_print_proxy.cc
|
| diff --git a/chrome/service/cloud_print/cloud_print_proxy.cc b/chrome/service/cloud_print/cloud_print_proxy.cc
|
| index 6834eb91be8fd7d98e6729c0ee58775e6aa3cebe..f37ec1f3dae96ec0cb7c290ff99684d68bc964af 100644
|
| --- a/chrome/service/cloud_print/cloud_print_proxy.cc
|
| +++ b/chrome/service/cloud_print/cloud_print_proxy.cc
|
| @@ -199,7 +199,7 @@ void CloudPrintProxy::GetPrinters(std::vector<std::string>* printers) {
|
| settings.InitFrom(service_prefs_);
|
| scoped_refptr<PrintSystem> print_system =
|
| PrintSystem::CreateInstance(settings.print_system_settings());
|
| - if (!print_system)
|
| + if (!print_system.get())
|
| return;
|
| PrintSystem::PrintSystemResult result = print_system->Init();
|
| if (!result.succeeded())
|
|
|