Index: components/sessions/core/serialized_navigation_entry.h |
diff --git a/components/sessions/core/serialized_navigation_entry.h b/components/sessions/core/serialized_navigation_entry.h |
index c0b01a084b29d736e60ffbe86593370ca0090eb5..7831ef431bc7fc532f96364a2c8f808e37623d8c 100644 |
--- a/components/sessions/core/serialized_navigation_entry.h |
+++ b/components/sessions/core/serialized_navigation_entry.h |
@@ -5,11 +5,12 @@ |
#ifndef COMPONENTS_SESSIONS_CORE_SERIALIZED_NAVIGATION_ENTRY_H_ |
#define COMPONENTS_SESSIONS_CORE_SERIALIZED_NAVIGATION_ENTRY_H_ |
+#include <stdint.h> |
+ |
#include <set> |
#include <string> |
#include <vector> |
-#include "base/basictypes.h" |
#include "base/memory/scoped_ptr.h" |
#include "base/strings/string16.h" |
#include "base/time/time.h" |
@@ -89,7 +90,7 @@ class SESSIONS_EXPORT SerializedNavigationEntry { |
return transition_type_; |
} |
bool has_post_data() const { return has_post_data_; } |
- int64 post_id() const { return post_id_; } |
+ int64_t post_id() const { return post_id_; } |
const GURL& original_request_url() const { return original_request_url_; } |
bool is_overriding_user_agent() const { return is_overriding_user_agent_; } |
base::Time timestamp() const { return timestamp_; } |
@@ -126,7 +127,7 @@ class SESSIONS_EXPORT SerializedNavigationEntry { |
std::string encoded_page_state_; |
ui::PageTransition transition_type_; |
bool has_post_data_; |
- int64 post_id_; |
+ int64_t post_id_; |
GURL original_request_url_; |
bool is_overriding_user_agent_; |
base::Time timestamp_; |