Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(240)

Unified Diff: content/browser/service_worker/service_worker_controllee_request_handler.cc

Issue 417043006: ServiceWorker: Make SWProviderHost listen to SWRegistration (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: address michael's comments Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: content/browser/service_worker/service_worker_controllee_request_handler.cc
diff --git a/content/browser/service_worker/service_worker_controllee_request_handler.cc b/content/browser/service_worker/service_worker_controllee_request_handler.cc
index bdea9e1f859fcfe81e0aa46f5987b938cdf4147d..89669e12cc00fb9524bde34c7eb6f271281ecd12 100644
--- a/content/browser/service_worker/service_worker_controllee_request_handler.cc
+++ b/content/browser/service_worker/service_worker_controllee_request_handler.cc
@@ -114,10 +114,8 @@ void ServiceWorkerControlleeRequestHandler::PrepareForMainResource(
DCHECK(context_);
// The corresponding provider_host may already have associated a registration
// in redirect case, unassociate it now.
+ provider_host_->SetRegistration(NULL);
provider_host_->SetControllerVersion(NULL);
- provider_host_->SetActiveVersion(NULL);
- provider_host_->SetWaitingVersion(NULL);
- provider_host_->SetInstallingVersion(NULL);
GURL stripped_url = net::SimplifyUrlForRequest(url);
provider_host_->SetDocumentUrl(stripped_url);
@@ -152,7 +150,7 @@ ServiceWorkerControlleeRequestHandler::DidLookupRegistrationForMainResource(
// Wait until it's activated before firing fetch events.
if (active_version &&
- active_version->status() == ServiceWorkerVersion::ACTIVATING) {
+ active_version->status() == ServiceWorkerVersion::ACTIVATING) {
registration->active_version()->RegisterStatusChangeCallback(
base::Bind(&self::OnVersionStatusChanged,
weak_factory_.GetWeakPtr(),
@@ -167,10 +165,8 @@ ServiceWorkerControlleeRequestHandler::DidLookupRegistrationForMainResource(
return;
}
+ provider_host_->SetRegistration(registration);
provider_host_->SetControllerVersion(registration->active_version());
- provider_host_->SetActiveVersion(registration->active_version());
- provider_host_->SetWaitingVersion(registration->waiting_version());
- provider_host_->SetInstallingVersion(registration->installing_version());
job_->ForwardToServiceWorker();
}
@@ -183,10 +179,9 @@ void ServiceWorkerControlleeRequestHandler::OnVersionStatusChanged(
job_->FallbackToNetwork();
return;
}
+
+ provider_host_->SetRegistration(registration);
provider_host_->SetControllerVersion(registration->active_version());
- provider_host_->SetActiveVersion(registration->active_version());
- provider_host_->SetWaitingVersion(registration->waiting_version());
- provider_host_->SetInstallingVersion(registration->installing_version());
job_->ForwardToServiceWorker();
}

Powered by Google App Engine
This is Rietveld 408576698