Index: content/browser/navigator_connect/navigator_connect_context_impl.cc |
diff --git a/content/browser/navigator_connect/navigator_connect_context_impl.cc b/content/browser/navigator_connect/navigator_connect_context_impl.cc |
index ca4aadd18f9bfaf7e0c487964b1e0a41f2f6d3bd..c46960570919bb5d47a2028ab3cea10878e39e13 100644 |
--- a/content/browser/navigator_connect/navigator_connect_context_impl.cc |
+++ b/content/browser/navigator_connect/navigator_connect_context_impl.cc |
@@ -4,6 +4,8 @@ |
#include "content/browser/navigator_connect/navigator_connect_context_impl.h" |
+#include <stdint.h> |
+ |
#include "content/browser/message_port_service.h" |
#include "content/browser/navigator_connect/service_port_service_impl.h" |
#include "content/browser/service_worker/service_worker_context_wrapper.h" |
@@ -30,7 +32,7 @@ struct NavigatorConnectContextImpl::Port { |
// If this port is associated with a service worker, these fields store that |
// information. |
- int64 service_worker_registration_id = kInvalidServiceWorkerRegistrationId; |
+ int64_t service_worker_registration_id = kInvalidServiceWorkerRegistrationId; |
GURL service_worker_registration_origin; |
}; |