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

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

Issue 354643003: ServiceWorker: Support navigator.serviceWorker.active (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: comment fix Created 6 years, 5 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
« no previous file with comments | « no previous file | content/browser/service_worker/service_worker_provider_host.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 75ad6effe8e05c64d5a6ea6217763699117550a8..fdaa81dc171a21d5994968c4e186dc801e295785 100644
--- a/content/browser/service_worker/service_worker_controllee_request_handler.cc
+++ b/content/browser/service_worker/service_worker_controllee_request_handler.cc
@@ -94,8 +94,7 @@ void ServiceWorkerControlleeRequestHandler::PrepareForMainResource(
DCHECK(context_);
// The corresponding provider_host may already have associate version in
// redirect case, unassociate it now.
- provider_host_->SetActiveVersion(NULL);
- provider_host_->SetWaitingVersion(NULL);
+ provider_host_->UnsetVersion(NULL);
GURL stripped_url = net::SimplifyUrlForRequest(url);
provider_host_->SetDocumentUrl(stripped_url);
@@ -122,6 +121,7 @@ ServiceWorkerControlleeRequestHandler::DidLookupRegistrationForMainResource(
// so the versions in the pipeline (.installing, .waiting) show up in the
// attribute values.
DCHECK(registration);
+ provider_host_->SetControllerVersion(registration->active_version());
provider_host_->SetActiveVersion(registration->active_version());
provider_host_->SetWaitingVersion(registration->waiting_version());
job_->ForwardToServiceWorker();
« no previous file with comments | « no previous file | content/browser/service_worker/service_worker_provider_host.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698