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

Unified Diff: content/browser/service_worker/service_worker_dispatcher_host.h

Issue 142973003: Have a central operation status code for ServiceWorker (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 11 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_dispatcher_host.h
diff --git a/content/browser/service_worker/service_worker_dispatcher_host.h b/content/browser/service_worker/service_worker_dispatcher_host.h
index 7d2a0246ab91f0175461c68753073210eeaa50db..c92ee11e027fbba3cbd6540e6f5227439f62870a 100644
--- a/content/browser/service_worker/service_worker_dispatcher_host.h
+++ b/content/browser/service_worker/service_worker_dispatcher_host.h
@@ -55,16 +55,16 @@ class CONTENT_EXPORT ServiceWorkerDispatcherHost : public BrowserMessageFilter {
// Callbacks from ServiceWorkerContextCore
void RegistrationComplete(int32 thread_id,
int32 request_id,
- ServiceWorkerRegistrationStatus status,
+ ServiceWorkerStatusCode status,
int64 registration_id);
void UnregistrationComplete(int32 thread_id,
int32 request_id,
- ServiceWorkerRegistrationStatus status);
+ ServiceWorkerStatusCode status);
void SendRegistrationError(int32 thread_id,
int32 request_id,
- ServiceWorkerRegistrationStatus status);
+ ServiceWorkerStatusCode status);
int render_process_id_;
base::WeakPtr<ServiceWorkerContextCore> context_;
};

Powered by Google App Engine
This is Rietveld 408576698