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

Unified Diff: content/child/service_worker/service_worker_dispatcher.cc

Issue 1544273002: Switch to standard integer types in content/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years 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/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);

Powered by Google App Engine
This is Rietveld 408576698