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

Unified Diff: content/common/view_messages.h

Issue 253913003: Remove RenderWidgetHostView*::DidUpdateBackingStore. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 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 60ff60bf10b22ff5108ac8d71507e0beba7f6a05..251639cb2f821686fe57f81d1660aa1222d4f65d 100644
--- a/content/common/view_messages.h
+++ b/content/common/view_messages.h
@@ -393,28 +393,9 @@ IPC_STRUCT_BEGIN(ViewHostMsg_TextInputState_Params)
IPC_STRUCT_END()
IPC_STRUCT_BEGIN(ViewHostMsg_UpdateRect_Params)
- // The bitmap to be painted into the view at the locations specified by
- // update_rects.
- IPC_STRUCT_MEMBER(TransportDIB::Id, bitmap)
-
- // The position and size of the bitmap.
- IPC_STRUCT_MEMBER(gfx::Rect, bitmap_rect)
-
- // The scroll delta. Only one of the delta components can be non-zero, and if
- // they are both zero, then it means there is no scrolling and the scroll_rect
- // is ignored.
- IPC_STRUCT_MEMBER(gfx::Vector2d, scroll_delta)
-
- // The rectangular region to scroll.
- IPC_STRUCT_MEMBER(gfx::Rect, scroll_rect)
-
// The scroll offset of the render view.
IPC_STRUCT_MEMBER(gfx::Vector2d, scroll_offset)
- // The regions of the bitmap (in view coords) that contain updated pixels.
- // In the case of scrolling, this includes the scroll damage rect.
- IPC_STRUCT_MEMBER(std::vector<gfx::Rect>, copy_rects)
-
// 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
@@ -446,10 +427,6 @@ IPC_STRUCT_BEGIN(ViewHostMsg_UpdateRect_Params)
// All the above coordinates are in DIP. This is the scale factor needed
// to convert them to pixels.
IPC_STRUCT_MEMBER(float, scale_factor)
-
- // The latency information for the frame. Only valid when accelerated
- // compositing is disabled.
- IPC_STRUCT_MEMBER(std::vector<ui::LatencyInfo>, latency_info)
IPC_STRUCT_END()
IPC_STRUCT_BEGIN(ViewMsg_New_Params)

Powered by Google App Engine
This is Rietveld 408576698