Index: content/browser/devtools/service_worker_devtools_agent_host.cc |
diff --git a/content/browser/devtools/service_worker_devtools_agent_host.cc b/content/browser/devtools/service_worker_devtools_agent_host.cc |
index 5d65a22c69822fb2ef1dd2b420074f888484c763..3755d15c51e2cfceae44984987b92c5dc2ae0081 100644 |
--- a/content/browser/devtools/service_worker_devtools_agent_host.cc |
+++ b/content/browser/devtools/service_worker_devtools_agent_host.cc |
@@ -21,7 +21,7 @@ void StatusNoOp(ServiceWorkerStatusCode status) {} |
void TerminateServiceWorkerOnIO( |
base::WeakPtr<ServiceWorkerContextCore> context_weak, |
- int64 version_id) { |
+ int64_t version_id) { |
if (ServiceWorkerContextCore* context = context_weak.get()) { |
if (ServiceWorkerVersion* version = context->GetLiveVersion(version_id)) |
version->StopWorker(base::Bind(&StatusNoOp)); |
@@ -30,7 +30,7 @@ void TerminateServiceWorkerOnIO( |
void UnregisterServiceWorkerOnIO( |
base::WeakPtr<ServiceWorkerContextCore> context_weak, |
- int64 version_id) { |
+ int64_t version_id) { |
if (ServiceWorkerContextCore* context = context_weak.get()) { |
if (ServiceWorkerVersion* version = context->GetLiveVersion(version_id)) { |
version->StopWorker(base::Bind(&StatusNoOp)); |
@@ -42,7 +42,7 @@ void UnregisterServiceWorkerOnIO( |
void SetDevToolsAttachedOnIO( |
base::WeakPtr<ServiceWorkerContextCore> context_weak, |
- int64 version_id, |
+ int64_t version_id, |
bool attached) { |
if (ServiceWorkerContextCore* context = context_weak.get()) { |
if (ServiceWorkerVersion* version = context->GetLiveVersion(version_id)) |
@@ -105,7 +105,7 @@ void ServiceWorkerDevToolsAgentHost::OnAttachedStateChanged(bool attached) { |
attached)); |
} |
-int64 ServiceWorkerDevToolsAgentHost::service_worker_version_id() const { |
+int64_t ServiceWorkerDevToolsAgentHost::service_worker_version_id() const { |
return service_worker_->version_id(); |
} |