| Index: chrome/service/cloud_print/job_status_updater.cc
|
| ===================================================================
|
| --- chrome/service/cloud_print/job_status_updater.cc (revision 104911)
|
| +++ chrome/service/cloud_print/job_status_updater.cc (working copy)
|
| @@ -89,7 +89,14 @@
|
| return CloudPrintURLFetcher::STOP_PROCESSING;
|
| }
|
|
|
| -void JobStatusUpdater::OnRequestAuthError() {
|
| +CloudPrintURLFetcher::ResponseAction JobStatusUpdater::OnRequestAuthError() {
|
| + // TODO(gene): We might consider stop processing if we get auth error here.
|
| if (delegate_)
|
| delegate_->OnAuthError();
|
| + return CloudPrintURLFetcher::CONTINUE_PROCESSING;
|
| }
|
| +
|
| +std::string JobStatusUpdater::GetAuthHeader() {
|
| + return CloudPrintHelpers::GetCloudPrintAuthHeader();
|
| +}
|
| +
|
|
|