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

Unified Diff: content/common/view_messages.h

Issue 6840060: Progress towards fixing 77536 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: "" Created 9 years, 8 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/view_messages.h
diff --git a/content/common/view_messages.h b/content/common/view_messages.h
index aacceb00f6efedcd5175b5a6ff03230e11c48413..6b1562c82df0ed626a7d67326a8777ba183c0447 100644
--- a/content/common/view_messages.h
+++ b/content/common/view_messages.h
@@ -700,6 +700,9 @@ IPC_STRUCT_BEGIN(ViewMsg_New_Params)
// The parent window's id.
IPC_STRUCT_MEMBER(gfx::NativeViewId, parent_window)
+ // Surface for accelerated rendering.
+ IPC_STRUCT_MEMBER(gfx::PluginWindowHandle, compositing_surface)
+
// Renderer-wide preferences.
IPC_STRUCT_MEMBER(RendererPreferences, renderer_preferences)
@@ -747,8 +750,9 @@ IPC_MESSAGE_CONTROL1(ViewMsg_New,
// Reply in response to ViewHostMsg_ShowView or ViewHostMsg_ShowWidget.
// similar to the new command, but used when the renderer created a view
// first, and we need to update it.
-IPC_MESSAGE_ROUTED1(ViewMsg_CreatingNew_ACK,
- gfx::NativeViewId /* parent_hwnd */)
+IPC_MESSAGE_ROUTED2(ViewMsg_CreatingNew_ACK,
+ gfx::NativeViewId /* parent_hwnd */,
+ gfx::PluginWindowHandle /* compositing_surface */)
// Sends updated preferences to the renderer.
IPC_MESSAGE_ROUTED1(ViewMsg_SetRendererPrefs,

Powered by Google App Engine
This is Rietveld 408576698