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

Unified Diff: content/common/view_messages.h

Issue 9980016: Delete background tab IOSurfaces on Mac. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fixed some perf issues on mac Created 8 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 7a5433958531b5b364fb2cb3391b779d60f6cd59..adc7c1162671e9be3821b10f388b326b893ebbb3 100644
--- a/content/common/view_messages.h
+++ b/content/common/view_messages.h
@@ -499,13 +499,20 @@ IPC_STRUCT_BEGIN(ViewHostMsg_UpdateRect_Params)
// The size of the RenderView when this message was generated. This is
// included so the host knows how large the view is from the perspective of
// the renderer process. This is necessary in case a resize operation is in
- // progress.
+ // progress. If auto-resize is enabled, this should update the corresponding
+ // view size.
IPC_STRUCT_MEMBER(gfx::Size, view_size)
// New window locations for plugin child windows.
IPC_STRUCT_MEMBER(std::vector<webkit::npapi::WebPluginGeometry>,
plugin_window_moves)
+ // GPU SwapBuffers params:
+ IPC_STRUCT_MEMBER(int32, gpu_surface_id)
+ IPC_STRUCT_MEMBER(uint64, gpu_surface_handle)
+ IPC_STRUCT_MEMBER(int32, gpu_route_id)
+ IPC_STRUCT_MEMBER(int32, gpu_process_host_id)
piman 2012/04/18 20:02:00 Ok, these fields look completely arbitrary. In Gpu
jbates 2012/04/18 23:01:58 I think that would be cleaner with this CL, but it
piman 2012/04/18 23:32:22 I think we should do that change (or whatever is r
jbates 2012/04/19 01:24:18 Sounds good, I'll put up a new CL tomorrow-ish.
+
// The following describes the various bits that may be set in flags:
//
// ViewHostMsg_UpdateRect_Flags::IS_RESIZE_ACK

Powered by Google App Engine
This is Rietveld 408576698