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

Unified Diff: content/renderer/background_sync/background_sync_client_impl.cc

Issue 1547073003: Switch to standard integer types in content/renderer/. (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/renderer/background_sync/background_sync_client_impl.cc
diff --git a/content/renderer/background_sync/background_sync_client_impl.cc b/content/renderer/background_sync/background_sync_client_impl.cc
index d0a7e9f21fd320d4b80808d44a7c8f4903fa1bd4..7d9c4056824267e1fe93e662af624a8ec751803d 100644
--- a/content/renderer/background_sync/background_sync_client_impl.cc
+++ b/content/renderer/background_sync/background_sync_client_impl.cc
@@ -17,7 +17,7 @@ namespace content {
// static
void BackgroundSyncClientImpl::Create(
- int64 service_worker_registration_id,
+ int64_t service_worker_registration_id,
mojo::InterfaceRequest<BackgroundSyncServiceClient> request) {
new BackgroundSyncClientImpl(service_worker_registration_id, request.Pass());
}
@@ -25,7 +25,7 @@ void BackgroundSyncClientImpl::Create(
BackgroundSyncClientImpl::~BackgroundSyncClientImpl() {}
BackgroundSyncClientImpl::BackgroundSyncClientImpl(
- int64 service_worker_registration_id,
+ int64_t service_worker_registration_id,
mojo::InterfaceRequest<BackgroundSyncServiceClient> request)
: service_worker_registration_id_(service_worker_registration_id),
binding_(this, request.Pass()),

Powered by Google App Engine
This is Rietveld 408576698