| Index: content/child/service_worker/service_worker_dispatcher.cc
|
| diff --git a/content/child/service_worker/service_worker_dispatcher.cc b/content/child/service_worker/service_worker_dispatcher.cc
|
| index 23a0c591af58744d5dbf24598c50d49bb534c09a..a71d69c1bf454a4f14e3abc881ab3302a87ce28d 100644
|
| --- a/content/child/service_worker/service_worker_dispatcher.cc
|
| +++ b/content/child/service_worker/service_worker_dispatcher.cc
|
| @@ -4,6 +4,8 @@
|
|
|
| #include "content/child/service_worker/service_worker_dispatcher.h"
|
|
|
| +#include <stddef.h>
|
| +
|
| #include "base/lazy_instance.h"
|
| #include "base/single_thread_task_runner.h"
|
| #include "base/stl_util.h"
|
| @@ -131,7 +133,7 @@ void ServiceWorkerDispatcher::RegisterServiceWorker(
|
|
|
| void ServiceWorkerDispatcher::UpdateServiceWorker(
|
| int provider_id,
|
| - int64 registration_id,
|
| + int64_t registration_id,
|
| WebServiceWorkerUpdateCallbacks* callbacks) {
|
| DCHECK(callbacks);
|
| int request_id = pending_update_callbacks_.Add(callbacks);
|
| @@ -141,7 +143,7 @@ void ServiceWorkerDispatcher::UpdateServiceWorker(
|
|
|
| void ServiceWorkerDispatcher::UnregisterServiceWorker(
|
| int provider_id,
|
| - int64 registration_id,
|
| + int64_t registration_id,
|
| WebServiceWorkerUnregistrationCallbacks* callbacks) {
|
| DCHECK(callbacks);
|
| int request_id = pending_unregistration_callbacks_.Add(callbacks);
|
|
|