Chromium Code Reviews| Index: content/browser/renderer_host/render_message_filter.h |
| diff --git a/content/browser/renderer_host/render_message_filter.h b/content/browser/renderer_host/render_message_filter.h |
| index f52f86fb9a2aff67c0649c700ee48060c8419a30..3a2d70a784d8bd41336d9aefa22f7c95168e707c 100644 |
| --- a/content/browser/renderer_host/render_message_filter.h |
| +++ b/content/browser/renderer_host/render_message_filter.h |
| @@ -19,6 +19,7 @@ |
| #include "base/string16.h" |
| #include "build/build_config.h" |
| #include "content/browser/renderer_host/resource_dispatcher_host_impl.h" |
| +#include "content/common/pepper_renderer_instance_data.h" |
| #include "content/public/browser/browser_message_filter.h" |
| #include "content/public/common/three_d_api_types.h" |
| #include "media/base/channel_layout.h" |
| @@ -166,10 +167,11 @@ class RenderMessageFilter : public BrowserMessageFilter { |
| IPC::Message* reply_msg); |
| void OnOpenChannelToPepperPlugin(const FilePath& path, |
| IPC::Message* reply_msg); |
| - void OnDidCreateOutOfProcessPepperInstance(int plugin_child_id, |
| - int32 pp_instance, |
| - int render_view_id, |
| - bool is_external); |
| + void OnDidCreateOutOfProcessPepperInstance( |
| + int plugin_child_id, |
| + int32 pp_instance, |
| + PepperRendererInstanceData instance_data, |
|
yzshen1
2012/12/06 19:59:46
why it is not a const ref? (You could move the #in
raymes
2012/12/07 21:32:19
Mainly because I modify the struct in that functio
yzshen1
2012/12/07 21:54:34
I didn't notice that.
Then never mind. :)
On 2012/
|
| + bool is_external); |
| void OnDidDeleteOutOfProcessPepperInstance(int plugin_child_id, |
| int32 pp_instance, |
| bool is_external); |