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

Unified Diff: content/common/browser_plugin_info.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/common/browser_plugin_info.h
diff --git a/content/common/browser_plugin_info.h b/content/common/browser_plugin_info.h
new file mode 100644
index 0000000000000000000000000000000000000000..0b0c688485bad8e6352596a47ccf064605edaa39
--- /dev/null
+++ b/content/common/browser_plugin_info.h
@@ -0,0 +1,19 @@
+#ifndef HEADER_GUARD_THIS_FILE_DOT_H
+#define HEADER_GUARD_THIS_FILE_DOT_H
scshunt 2012/08/12 01:42:45 Okay, this header file seems really bad, and shoul
+
+#include "base/basictypes.h"
+
+struct BrowserPlugin_SwapInfo {
+ int route_id;
+ int gpu_host_id;
+};
scshunt 2012/08/12 01:42:45 Can we avoid passing this to the embedder?
+
+struct BrowserPluginHostMsg_Surface_Params {
+ int gpu_process_id;
+ uint32 client_id;
+ uint32 context_id;
+ uint32 texture_id[2];
+ uint32 sync_point;
+};
+
+#endif

Powered by Google App Engine
This is Rietveld 408576698