diff options
author | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-12-06 00:02:16 +0000 |
---|---|---|
committer | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-12-06 00:02:16 +0000 |
commit | 60eca4eb056d421943eba9b87d6590985565c2fb (patch) | |
tree | 653086542564cdb19099cd3cf2d6baa89cd1b025 /content/common/resource_messages.h | |
parent | 24835e9056711da23091ce0116e7ca41d1bdf279 (diff) | |
download | chromium_src-60eca4eb056d421943eba9b87d6590985565c2fb.zip chromium_src-60eca4eb056d421943eba9b87d6590985565c2fb.tar.gz chromium_src-60eca4eb056d421943eba9b87d6590985565c2fb.tar.bz2 |
Move more of the plugin code in the renderer to use RenderFrame instead of RenderView.
This is part of the work of making ContentRendererClient's OverrideCreatePlugin and CreatePluginReplacement take only a RenderFrame. I'm still not there yet, which is why their signatures haven't been trimmed.
BUG=304341
R=fsamuel@chromium.org, nasko@chromium.org
Review URL: https://codereview.chromium.org/107183002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@239075 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/common/resource_messages.h')
-rw-r--r-- | content/common/resource_messages.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/content/common/resource_messages.h b/content/common/resource_messages.h index d47052f..0ee74eb 100644 --- a/content/common/resource_messages.h +++ b/content/common/resource_messages.h @@ -176,6 +176,9 @@ IPC_STRUCT_BEGIN(ResourceHostMsg_Request) // True if the request was user initiated. IPC_STRUCT_MEMBER(bool, has_user_gesture) + // The routing id of the RenderFrame. + IPC_STRUCT_MEMBER(int, render_frame_id) + // True if |frame_id| is the main frame of a RenderView. IPC_STRUCT_MEMBER(bool, is_main_frame) |