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

Side by Side Diff: content/browser/service_worker/service_worker_register_job.cc

Issue 556003006: [ServiceWorker] Check is_uninstalled in ServiceWorkerRegisterJob::ContinueWithRegistration() (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: move is_uninstalled_ = true; Created 6 years, 3 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 unified diff | Download patch
« no previous file with comments | « no previous file | content/browser/service_worker/service_worker_registration.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "content/browser/service_worker/service_worker_register_job.h" 5 #include "content/browser/service_worker/service_worker_register_job.h"
6 6
7 #include <vector> 7 #include <vector>
8 8
9 #include "base/message_loop/message_loop.h" 9 #include "base/message_loop/message_loop.h"
10 #include "content/browser/service_worker/service_worker_context_core.h" 10 #include "content/browser/service_worker/service_worker_context_core.h"
(...skipping 179 matching lines...) Expand 10 before | Expand all | Expand 10 after
190 // Throughout this file, comments in quotes are excerpts from the spec. 190 // Throughout this file, comments in quotes are excerpts from the spec.
191 void ServiceWorkerRegisterJob::ContinueWithRegistration( 191 void ServiceWorkerRegisterJob::ContinueWithRegistration(
192 ServiceWorkerStatusCode status, 192 ServiceWorkerStatusCode status,
193 const scoped_refptr<ServiceWorkerRegistration>& existing_registration) { 193 const scoped_refptr<ServiceWorkerRegistration>& existing_registration) {
194 DCHECK_EQ(REGISTRATION_JOB, job_type_); 194 DCHECK_EQ(REGISTRATION_JOB, job_type_);
195 if (status != SERVICE_WORKER_ERROR_NOT_FOUND && status != SERVICE_WORKER_OK) { 195 if (status != SERVICE_WORKER_ERROR_NOT_FOUND && status != SERVICE_WORKER_OK) {
196 Complete(status); 196 Complete(status);
197 return; 197 return;
198 } 198 }
199 199
200 if (!existing_registration.get()) { 200 if (!existing_registration.get() || existing_registration->is_uninstalled()) {
201 RegisterAndContinue(SERVICE_WORKER_OK); 201 RegisterAndContinue(SERVICE_WORKER_OK);
202 return; 202 return;
203 } 203 }
204 204
205 DCHECK(existing_registration->GetNewestVersion());
205 // "If scriptURL is equal to registration.[[ScriptURL]], then:" 206 // "If scriptURL is equal to registration.[[ScriptURL]], then:"
206 if (existing_registration->GetNewestVersion()->script_url() == script_url_) { 207 if (existing_registration->GetNewestVersion()->script_url() == script_url_) {
207 // "Set registration.[[Uninstalling]] to false." 208 // "Set registration.[[Uninstalling]] to false."
208 existing_registration->AbortPendingClear(base::Bind( 209 existing_registration->AbortPendingClear(base::Bind(
209 &ServiceWorkerRegisterJob::ContinueWithRegistrationForSameScriptUrl, 210 &ServiceWorkerRegisterJob::ContinueWithRegistrationForSameScriptUrl,
210 weak_factory_.GetWeakPtr(), 211 weak_factory_.GetWeakPtr(),
211 existing_registration)); 212 existing_registration));
212 return; 213 return;
213 } 214 }
214 215
(...skipping 321 matching lines...) Expand 10 before | Expand all | Expand 10 after
536 ServiceWorkerProviderHost* host = it->GetProviderHost(); 537 ServiceWorkerProviderHost* host = it->GetProviderHost();
537 if (ServiceWorkerUtils::ScopeMatches(registration->pattern(), 538 if (ServiceWorkerUtils::ScopeMatches(registration->pattern(),
538 host->document_url())) { 539 host->document_url())) {
539 if (host->CanAssociateRegistration(registration)) 540 if (host->CanAssociateRegistration(registration))
540 host->AssociateRegistration(registration); 541 host->AssociateRegistration(registration);
541 } 542 }
542 } 543 }
543 } 544 }
544 545
545 } // namespace content 546 } // namespace content
OLDNEW
« no previous file with comments | « no previous file | content/browser/service_worker/service_worker_registration.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698