| 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()),
|
|
|