| 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..bb049f3393c96deff840434da3e772f9464fa4e2 100644
|
| --- a/content/common/android/sync_compositor_messages.h
|
| +++ b/content/common/android/sync_compositor_messages.h
|
| @@ -24,17 +24,12 @@ 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::Size& viewport_size,
|
| 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::Size viewport_size;
|
| gfx::Rect clip;
|
| gfx::Rect viewport_rect_for_tile_priority;
|
| gfx::Transform transform_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_size)
|
| IPC_STRUCT_TRAITS_MEMBER(viewport_rect_for_tile_priority)
|
| IPC_STRUCT_TRAITS_MEMBER(transform_for_tile_priority)
|
| IPC_STRUCT_TRAITS_END()
|
|
|