| Index: chrome/service/cloud_print/printer_job_handler.cc
|
| ===================================================================
|
| --- chrome/service/cloud_print/printer_job_handler.cc (revision 72357)
|
| +++ chrome/service/cloud_print/printer_job_handler.cc (working copy)
|
| @@ -65,8 +65,10 @@
|
| printer_watcher_->StartWatching(this);
|
| CheckForJobs(kJobFetchReasonStartup);
|
| } else {
|
| - // This printer does not exist any more. Delete it from the server.
|
| - OnPrinterDeleted();
|
| + // This printer does not exist any more. Check if we should delete it from
|
| + // the server.
|
| + if (delegate_->OnPrinterNotFound(printer_info_.printer_name))
|
| + OnPrinterDeleted();
|
| }
|
| return true;
|
| }
|
|
|