Chromium Code Reviews| Index: content/renderer/browser_plugin/browser_plugin_manager.h |
| diff --git a/content/renderer/browser_plugin/browser_plugin_manager.h b/content/renderer/browser_plugin/browser_plugin_manager.h |
| index 4720bb166273ce2c17c037964a456bac9a498183..37c8355cd5bceccf3abfec8a734292f4867763fe 100644 |
| --- a/content/renderer/browser_plugin/browser_plugin_manager.h |
| +++ b/content/renderer/browser_plugin/browser_plugin_manager.h |
| @@ -10,6 +10,8 @@ |
| #include "content/public/renderer/render_process_observer.h" |
| #include "ipc/ipc_sender.h" |
| +struct BrowserPlugin_SwapInfo; |
| +struct BrowserPluginMsg_UpdateRect_Params; |
|
scshunt
2012/08/12 01:42:45
Unnecessary now that their use has been moved to t
scshunt
2012/08/17 17:30:28
Done.
|
| class RenderViewImpl; |
| namespace WebKit { |
| @@ -43,6 +45,7 @@ class CONTENT_EXPORT BrowserPluginManager : public IPC::Sender, |
| RenderViewImpl* render_view, |
| WebKit::WebFrame* frame, |
| const WebKit::WebPluginParams& params) = 0; |
| + virtual void TextureProviderIsReady(int instance_id) = 0; |
|
scshunt
2012/08/12 01:42:45
This isn't the best name. I wonder if I can improv
scshunt
2012/08/17 17:30:28
Done.
|
| void AddBrowserPlugin(int instance_id, BrowserPlugin* browser_plugin); |
| void RemoveBrowserPlugin(int instance_id); |
| @@ -51,6 +54,7 @@ class CONTENT_EXPORT BrowserPluginManager : public IPC::Sender, |
| protected: |
| IDMap<BrowserPlugin> instances_; |
| int browser_plugin_counter_; |
| + |
| }; |
| } // namespace content |