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

Unified Diff: content/renderer/browser_plugin/browser_plugin_manager.h

Issue 10735010: 3D Compositing in <browser>, first draft. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Major changes to clean up deadlock & other issues Created 8 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/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

Powered by Google App Engine
This is Rietveld 408576698