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

Unified Diff: content/browser/frame_host/navigation_entry_impl.h

Issue 1093923003: Change FrameTreeNode id from int64 to int. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Change FrameTreeNode id from int64 to int Created 5 years, 8 months 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/frame_host/navigation_entry_impl.h
diff --git a/content/browser/frame_host/navigation_entry_impl.h b/content/browser/frame_host/navigation_entry_impl.h
index 4f47b8a0668c5c0a67ab8757879beae23ac6174e..764b20de878604dcf30cbb775196c94718a9c3b0 100644
--- a/content/browser/frame_host/navigation_entry_impl.h
+++ b/content/browser/frame_host/navigation_entry_impl.h
@@ -152,7 +152,7 @@ class CONTENT_EXPORT NavigationEntryImpl
// its FrameNavigationEntry. A new FrameNavigationEntry is added if none
// exists, or else the existing one (which might be shared with other
// NavigationEntries) is updated with the given parameters.
- void AddOrUpdateFrameEntry(int64 frame_tree_node_id,
+ void AddOrUpdateFrameEntry(int frame_tree_node_id,
SiteInstanceImpl* site_instance,
const GURL& url,
const Referrer& referrer);
@@ -281,10 +281,10 @@ class CONTENT_EXPORT NavigationEntryImpl
// Indicates which FrameTreeNode to navigate. Currently only used if the
// --site-per-process flag is passed.
- int64 frame_tree_node_id() const {
+ int frame_tree_node_id() const {
return frame_tree_node_id_;
}
- void set_frame_tree_node_id(int64 frame_tree_node_id) {
+ void set_frame_tree_node_id(int frame_tree_node_id) {
frame_tree_node_id_ = frame_tree_node_id;
}
@@ -418,7 +418,7 @@ class CONTENT_EXPORT NavigationEntryImpl
// --site-per-process flag is passed. It is cleared in |ResetForCommit|
// because we only use it while the navigation is pending.
// TODO(creis): Move this to FrameNavigationEntry.
- int64 frame_tree_node_id_;
+ int frame_tree_node_id_;
#if defined(OS_ANDROID)
// The time at which Chrome received the Android Intent that triggered this
« no previous file with comments | « content/browser/frame_host/navigation_controller_impl.cc ('k') | content/browser/frame_host/navigation_entry_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698