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

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

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.cc
diff --git a/content/common/android/sync_compositor_messages.cc b/content/common/android/sync_compositor_messages.cc
index f9be4b274ff60d0a1151439137144f4b8b157043..3ae6c9e91c4762c97185515b31a75f6d7541d4a5 100644
--- a/content/common/android/sync_compositor_messages.cc
+++ b/content/common/android/sync_compositor_messages.cc
@@ -9,16 +9,10 @@ namespace content {
SyncCompositorDemandDrawHwParams::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)
- : surface_size(surface_size),
- transform(transform),
- viewport(viewport),
- clip(clip),
+ : viewport(viewport),
viewport_rect_for_tile_priority(viewport_rect_for_tile_priority),
transform_for_tile_priority(transform_for_tile_priority) {}

Powered by Google App Engine
This is Rietveld 408576698