summaryrefslogtreecommitdiffstats
path: root/chrome/browser/android/tab_state.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser/android/tab_state.cc')
-rw-r--r--chrome/browser/android/tab_state.cc4
1 files changed, 3 insertions, 1 deletions
diff --git a/chrome/browser/android/tab_state.cc b/chrome/browser/android/tab_state.cc
index 327bc8c..bd9ab3b 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);