Index: content/child/background_sync/background_sync_provider_thread_proxy.h |
diff --git a/content/child/background_sync/background_sync_provider_thread_proxy.h b/content/child/background_sync/background_sync_provider_thread_proxy.h |
index 9971909077988f495007c46a92d8abe952e9bc90..7aed6d73df615417b4d6846827f6d0dfe9d2d7ab 100644 |
--- a/content/child/background_sync/background_sync_provider_thread_proxy.h |
+++ b/content/child/background_sync/background_sync_provider_thread_proxy.h |
@@ -38,27 +38,27 @@ class BackgroundSyncProviderThreadProxy : public blink::WebSyncProvider, |
const blink::WebSyncRegistration* options, |
blink::WebServiceWorkerRegistration* service_worker_registration, |
bool requested_from_service_worker, |
- blink::WebSyncRegistrationCallbacks* callbacks); |
+ blink::WebSyncRegistrationCallbacks* callbacks) override; |
void unregisterBackgroundSync( |
blink::WebSyncRegistration::Periodicity periodicity, |
int64_t id, |
const blink::WebString& tag, |
blink::WebServiceWorkerRegistration* service_worker_registration, |
- blink::WebSyncUnregistrationCallbacks* callbacks); |
+ blink::WebSyncUnregistrationCallbacks* callbacks) override; |
void getRegistration( |
blink::WebSyncRegistration::Periodicity, |
const blink::WebString& tag, |
blink::WebServiceWorkerRegistration* service_worker_registration, |
- blink::WebSyncRegistrationCallbacks* callbacks); |
+ blink::WebSyncRegistrationCallbacks* callbacks) override; |
void getRegistrations( |
blink::WebSyncRegistration::Periodicity periodicity, |
blink::WebServiceWorkerRegistration* service_worker_registration, |
- blink::WebSyncGetRegistrationsCallbacks* callbacks); |
+ blink::WebSyncGetRegistrationsCallbacks* callbacks) override; |
void getPermissionStatus( |
blink::WebSyncRegistration::Periodicity periodicity, |
blink::WebServiceWorkerRegistration* service_worker_registration, |
- blink::WebSyncGetPermissionStatusCallbacks* callbacks); |
- void releaseRegistration(int64_t handle_id); |
+ blink::WebSyncGetPermissionStatusCallbacks* callbacks) override; |
+ void releaseRegistration(int64_t handle_id) override; |
// Given |handle_id|, ask the provider for a new handle with the same |
// underlying registration. |