Index: content/child/service_worker/service_worker_dispatcher.h |
diff --git a/content/child/service_worker/service_worker_dispatcher.h b/content/child/service_worker/service_worker_dispatcher.h |
index f99504ba1ffaf7b51209c4a55253fa03c64b483f..f84f847cf8acba992cf2dbf7e40fe199d7bebb58 100644 |
--- a/content/child/service_worker/service_worker_dispatcher.h |
+++ b/content/child/service_worker/service_worker_dispatcher.h |
@@ -5,10 +5,13 @@ |
#ifndef CONTENT_CHILD_SERVICE_WORKER_SERVICE_WORKER_DISPATCHER_H_ |
#define CONTENT_CHILD_SERVICE_WORKER_SERVICE_WORKER_DISPATCHER_H_ |
+#include <stdint.h> |
+ |
#include <map> |
#include <vector> |
#include "base/id_map.h" |
+#include "base/macros.h" |
#include "base/memory/ref_counted.h" |
#include "base/strings/string16.h" |
#include "content/public/child/worker_thread.h" |
@@ -79,12 +82,12 @@ class CONTENT_EXPORT ServiceWorkerDispatcher : public WorkerThread::Observer { |
WebServiceWorkerRegistrationCallbacks* callbacks); |
// Corresponds to ServiceWorkerRegistration.update(). |
void UpdateServiceWorker(int provider_id, |
- int64 registration_id, |
+ int64_t registration_id, |
WebServiceWorkerUpdateCallbacks* callbacks); |
// Corresponds to ServiceWorkerRegistration.unregister(). |
void UnregisterServiceWorker( |
int provider_id, |
- int64 registration_id, |
+ int64_t registration_id, |
WebServiceWorkerUnregistrationCallbacks* callbacks); |
// Corresponds to navigator.serviceWorker.getRegistration(). |
void GetRegistration(int provider_id, |