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

Unified Diff: content/browser/frame_host/frame_tree.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_accessibility.cc ('k') | content/browser/frame_host/frame_tree.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.h
diff --git a/content/browser/frame_host/frame_tree.h b/content/browser/frame_host/frame_tree.h
index 179fcb3b26ca7d8d4985155e5aa1dd565753048d..424cda1ae93674c1c61535c8ce7ac753c6137a36 100644
--- a/content/browser/frame_host/frame_tree.h
+++ b/content/browser/frame_host/frame_tree.h
@@ -54,7 +54,7 @@ class CONTENT_EXPORT FrameTree {
// Returns the FrameTreeNode with the given |frame_tree_node_id| if it is part
// of this FrameTree.
- FrameTreeNode* FindByID(int64 frame_tree_node_id);
+ FrameTreeNode* FindByID(int frame_tree_node_id);
// Returns the FrameTreeNode with the given renderer-specific |routing_id|.
FrameTreeNode* FindByRoutingID(int process_id, int routing_id);
@@ -177,7 +177,7 @@ class CONTENT_EXPORT FrameTree {
scoped_ptr<FrameTreeNode> root_;
- int64 focused_frame_tree_node_id_;
+ int focused_frame_tree_node_id_;
base::Callback<void(RenderFrameHost*)> on_frame_removed_;
« no previous file with comments | « content/browser/frame_host/frame_accessibility.cc ('k') | content/browser/frame_host/frame_tree.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698