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

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

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.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,
« no previous file with comments | « content/child/scoped_child_process_reference.h ('k') | content/child/service_worker/service_worker_dispatcher.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698