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

Unified Diff: content/renderer/render_view_impl.h

Issue 10829225: Browser Plugin: Add HTML5-like postMessage support (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Verified to work with nasko@'s disabled frame tree updates Created 8 years, 2 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/renderer/render_view_impl.h
diff --git a/content/renderer/render_view_impl.h b/content/renderer/render_view_impl.h
index 9bfe6ab8b7d6c08496390f5446a9f1272d2a5f12..6629f225b34837ad3c3459d6efc1189f963c7e88 100644
--- a/content/renderer/render_view_impl.h
+++ b/content/renderer/render_view_impl.h
@@ -239,6 +239,13 @@ class RenderViewImpl : public RenderWidget,
// May return NULL when the view is closing.
CONTENT_EXPORT WebKit::WebView* webview() const;
+ // If this is a swapped out RenderView, which maintains a copy of the frame
+ // tree of an active RenderView, we keep a map from frame ids in this view to
+ // the frame ids of the active view for each corresponding frame.
+ // This method returns the frame in this RenderView that corresponds to the
+ // frame in the active RenderView specified by |remote_frame_id|.
+ WebKit::WebFrame* GetFrameByRemoteID(int remote_frame_id);
+
// WebGraphicsContext3DSwapBuffersClient implementation.
// Called by a GraphicsContext associated with this view when swapbuffers
@@ -1092,13 +1099,6 @@ class RenderViewImpl : public RenderWidget,
// and added to the DOM.
void CreateFrameTree(WebKit::WebFrame* frame, DictionaryValue* frame_tree);
- // If this is a swapped out RenderView, which maintains a copy of the frame
- // tree of an active RenderView, we keep a map from frame ids in this view to
- // the frame ids of the active view for each corresponding frame.
- // This method returns the frame in this RenderView that corresponds to the
- // frame in the active RenderView specified by |remote_frame_id|.
- WebKit::WebFrame* GetFrameByRemoteID(int remote_frame_id);
-
void EnsureMediaStreamImpl();
// This callback is triggered when DownloadFavicon completes, either

Powered by Google App Engine
This is Rietveld 408576698