| Index: chrome/service/cloud_print/print_system_cups.cc
|
| ===================================================================
|
| --- chrome/service/cloud_print/print_system_cups.cc (revision 70946)
|
| +++ chrome/service/cloud_print/print_system_cups.cc (working copy)
|
| @@ -72,7 +72,7 @@
|
| explicit PrintSystemCUPS(const DictionaryValue* print_system_settings);
|
|
|
| // PrintSystem implementation.
|
| - virtual void Init();
|
| + virtual PrintSystemResult Init();
|
|
|
| virtual void EnumeratePrinters(printing::PrinterList* printer_list);
|
|
|
| @@ -405,9 +405,10 @@
|
| print_servers_.push_back(print_server);
|
| }
|
|
|
| -void PrintSystemCUPS::Init() {
|
| +PrintSystem::PrintSystemResult PrintSystemCUPS::Init() {
|
| UpdatePrinters();
|
| initialized_ = true;
|
| + return PrintSystemResult(true, std::string());
|
| }
|
|
|
| void PrintSystemCUPS::UpdatePrinters() {
|
|
|