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

Unified Diff: content/browser/frame_host/frame_tree_node.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
« no previous file with comments | « content/browser/frame_host/frame_tree.cc ('k') | content/browser/frame_host/frame_tree_node.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/frame_host/frame_tree_node.h
diff --git a/content/browser/frame_host/frame_tree_node.h b/content/browser/frame_host/frame_tree_node.h
index bcb77802c47b008b92f31004ac31db9c5ba406d6..633966bae6ad15f523f3bf95b6f576560c3fccdf 100644
--- a/content/browser/frame_host/frame_tree_node.h
+++ b/content/browser/frame_host/frame_tree_node.h
@@ -33,7 +33,7 @@ class CONTENT_EXPORT FrameTreeNode {
public:
// Returns the FrameTreeNode with the given global |frame_tree_node_id|,
// regardless of which FrameTree it is in.
- static FrameTreeNode* GloballyFindByID(int64 frame_tree_node_id);
+ static FrameTreeNode* GloballyFindByID(int frame_tree_node_id);
FrameTreeNode(FrameTree* frame_tree,
Navigator* navigator,
@@ -67,7 +67,7 @@ class CONTENT_EXPORT FrameTreeNode {
return &render_manager_;
}
- int64 frame_tree_node_id() const {
+ int frame_tree_node_id() const {
return frame_tree_node_id_;
}
@@ -167,7 +167,7 @@ class CONTENT_EXPORT FrameTreeNode {
void set_parent(FrameTreeNode* parent) { parent_ = parent; }
// The next available browser-global FrameTreeNode ID.
- static int64 next_frame_tree_node_id_;
+ static int next_frame_tree_node_id_;
// The FrameTree that owns us.
FrameTree* frame_tree_; // not owned.
@@ -184,7 +184,7 @@ class CONTENT_EXPORT FrameTreeNode {
// A browser-global identifier for the frame in the page, which stays stable
// even if the frame does a cross-process navigation.
- const int64 frame_tree_node_id_;
+ const int frame_tree_node_id_;
// The parent node of this frame. NULL if this node is the root or if it has
// not yet been attached to the frame tree.
« no previous file with comments | « content/browser/frame_host/frame_tree.cc ('k') | content/browser/frame_host/frame_tree_node.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698