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

Unified Diff: content/browser/navigator_connect/navigator_connect_context_impl.cc

Issue 1549113002: Switch to standard integer types in content/browser/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase 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/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;
};
« no previous file with comments | « content/browser/mojo/mojo_shell_client_host.cc ('k') | content/browser/navigator_connect/service_port_service_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698