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

Unified Diff: content/common/android/sync_compositor_messages.h

Issue 2188943002: Remove OutputSurfaceClient external clip (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: unittests compile Created 4 years, 5 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/android/sync_compositor_messages.h
diff --git a/content/common/android/sync_compositor_messages.h b/content/common/android/sync_compositor_messages.h
index 68af4d74201086567a73e32aa7c6cb50e69794e3..4d5ba4265b5e4cbaf839d1e4f9aa798a68bf8edc 100644
--- a/content/common/android/sync_compositor_messages.h
+++ b/content/common/android/sync_compositor_messages.h
@@ -24,16 +24,11 @@ namespace content {
struct SyncCompositorDemandDrawHwParams {
SyncCompositorDemandDrawHwParams();
SyncCompositorDemandDrawHwParams(
- const gfx::Size& surface_size,
- const gfx::Transform& transform,
const gfx::Rect& viewport,
- const gfx::Rect& clip,
const gfx::Rect& viewport_rect_for_tile_priority,
const gfx::Transform& transform_for_tile_priority);
~SyncCompositorDemandDrawHwParams();
- gfx::Size surface_size;
- gfx::Transform transform;
gfx::Rect viewport;
gfx::Rect clip;
gfx::Rect viewport_rect_for_tile_priority;
@@ -83,10 +78,7 @@ struct SyncCompositorCommonRendererParams {
#define IPC_MESSAGE_START SyncCompositorMsgStart
IPC_STRUCT_TRAITS_BEGIN(content::SyncCompositorDemandDrawHwParams)
- IPC_STRUCT_TRAITS_MEMBER(surface_size)
- IPC_STRUCT_TRAITS_MEMBER(transform)
IPC_STRUCT_TRAITS_MEMBER(viewport)
- IPC_STRUCT_TRAITS_MEMBER(clip)
IPC_STRUCT_TRAITS_MEMBER(viewport_rect_for_tile_priority)
IPC_STRUCT_TRAITS_MEMBER(transform_for_tile_priority)
IPC_STRUCT_TRAITS_END()

Powered by Google App Engine
This is Rietveld 408576698