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

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

Issue 560993002: remove c++11 enum scope in ServiceWorkerRegistration::OnRestoreFinished (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/service_worker/service_worker_registration.cc
diff --git a/content/browser/service_worker/service_worker_registration.cc b/content/browser/service_worker/service_worker_registration.cc
index 33fdfa6767fee298fafa53e31041cca2d786cf80..5f995607c01b5db8cd1584a5efbf2b34b844feb5 100644
--- a/content/browser/service_worker/service_worker_registration.cc
+++ b/content/browser/service_worker/service_worker_registration.cc
@@ -322,7 +322,7 @@ void ServiceWorkerRegistration::OnRestoreFinished(
scoped_refptr<ServiceWorkerVersion> version,
ServiceWorkerStatusCode status) {
if (!context_) {
- callback.Run(ServiceWorkerStatusCode::SERVICE_WORKER_ERROR_ABORT);
+ callback.Run(SERVICE_WORKER_ERROR_ABORT);
michaeln 2014/09/10 22:36:57 lgtm, thnx
Mostyn Bramley-Moore 2014/09/10 23:13:35 Acknowledged.
return;
}
context_->storage()->NotifyDoneInstallingRegistration(
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698