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

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

Issue 268543008: Cross-process iframe accessibility. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Address feedback Created 6 years, 4 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/render_frame_proxy_host.h
diff --git a/content/browser/frame_host/render_frame_proxy_host.h b/content/browser/frame_host/render_frame_proxy_host.h
index 0da55c7528fb4d9a0ac118068492d35e3cd1629c..43e789d34906a15e43fd12b430c660267613a09d 100644
--- a/content/browser/frame_host/render_frame_proxy_host.h
+++ b/content/browser/frame_host/render_frame_proxy_host.h
@@ -71,6 +71,8 @@ class RenderFrameProxyHost
return routing_id_;
}
+ static RenderFrameProxyHost* FromID(int process_id, int routing_id);
Charlie Reis 2014/08/25 20:58:43 nit: Static method should be first, before the con
dmazzoni 2014/08/26 23:31:03 Done.
+
SiteInstance* GetSiteInstance() {
return site_instance_.get();
}
@@ -100,6 +102,8 @@ class RenderFrameProxyHost
return cross_process_frame_connector_.get();
}
+ FrameTreeNode* frame_tree_node() const { return frame_tree_node_; };
Charlie Reis 2014/08/25 20:58:43 nit: This one's fairly fundamental, so let's list
dmazzoni 2014/08/26 23:31:03 Done.
+
private:
// This RenderFrameProxyHost's routing id.
int routing_id_;

Powered by Google App Engine
This is Rietveld 408576698