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

Unified Diff: chrome/browser/android/tab_state.cc

Issue 1542413002: Switch to standard integer types in chrome/browser/, part 1 of 4. (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
« no previous file with comments | « chrome/browser/android/tab_android.cc ('k') | chrome/browser/android/tab_web_contents_delegate_android.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/android/tab_state.cc
diff --git a/chrome/browser/android/tab_state.cc b/chrome/browser/android/tab_state.cc
index 327bc8c4500e69533cccd3e80cac36fd1f23e90d..bd9ab3b67d941c9f36de87ef61db0848830042df 100644
--- a/chrome/browser/android/tab_state.cc
+++ b/chrome/browser/android/tab_state.cc
@@ -5,6 +5,8 @@
#include "chrome/browser/android/tab_state.h"
#include <jni.h>
+#include <stddef.h>
+#include <stdint.h>
#include <limits>
#include <vector>
@@ -197,7 +199,7 @@ void UpgradeNavigationFromV1ToV2(
if (iterator->ReadBool(&is_overriding_user_agent))
v2_pickle.WriteBool(is_overriding_user_agent);
- int64 timestamp_internal_value = 0;
+ int64_t timestamp_internal_value = 0;
if (iterator->ReadInt64(&timestamp_internal_value))
v2_pickle.WriteInt64(timestamp_internal_value);
« no previous file with comments | « chrome/browser/android/tab_android.cc ('k') | chrome/browser/android/tab_web_contents_delegate_android.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698