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

Unified Diff: content/browser/frame_host/frame_accessibility.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 | « chrome/browser/ui/browser_navigator.h ('k') | content/browser/frame_host/frame_accessibility.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/frame_host/frame_accessibility.h
diff --git a/content/browser/frame_host/frame_accessibility.h b/content/browser/frame_host/frame_accessibility.h
index 449724d3b06faeb3c54c66914bec3ad53bf3053f..d97a5c014e186bdfaa2f189d53db2eac1b6c382b 100644
--- a/content/browser/frame_host/frame_accessibility.h
+++ b/content/browser/frame_host/frame_accessibility.h
@@ -27,7 +27,7 @@ class CONTENT_EXPORT FrameAccessibility {
// frame tree.
void AddChildFrame(RenderFrameHostImpl* parent_frame_host,
int accessibility_node_id,
- int64 child_frame_tree_node_id);
+ int child_frame_tree_node_id);
// Add a mapping between an accessibility node of |parent_frame_host|
// and the main frame of the guest Webcontents with the given
@@ -69,7 +69,7 @@ class CONTENT_EXPORT FrameAccessibility {
RenderFrameHostImpl* GetRFHIFromFrameTreeNodeId(
RenderFrameHostImpl* parent_frame_host,
- int64 child_frame_tree_node_id);
+ int child_frame_tree_node_id);
// This structure stores the parent-child relationship between an
// accessibility node in a parent frame and its child frame, where the
@@ -89,7 +89,7 @@ class CONTENT_EXPORT FrameAccessibility {
// If the child frame is an iframe, this is the iframe's FrameTreeNode id,
// otherwise 0.
- int64 child_frame_tree_node_id;
+ int child_frame_tree_node_id;
// If the child frame is a browser plugin, this is its instance id,
// otherwise 0.
« no previous file with comments | « chrome/browser/ui/browser_navigator.h ('k') | content/browser/frame_host/frame_accessibility.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698