| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "content/common/android/sync_compositor_messages.h" | 5 #include "content/common/android/sync_compositor_messages.h" |
| 6 | 6 |
| 7 namespace content { | 7 namespace content { |
| 8 | 8 |
| 9 SyncCompositorCommonBrowserParams::SyncCompositorCommonBrowserParams() | 9 SyncCompositorCommonBrowserParams::SyncCompositorCommonBrowserParams() |
| 10 : bytes_limit(0u), update_root_scroll_offset(false) {} | 10 : bytes_limit(0u), update_root_scroll_offset(false) {} |
| (...skipping 11 matching lines...) Expand all Loading... |
| 22 const gfx::Transform& transform_for_tile_priority) | 22 const gfx::Transform& transform_for_tile_priority) |
| 23 : surface_size(surface_size), | 23 : surface_size(surface_size), |
| 24 transform(transform), | 24 transform(transform), |
| 25 viewport(viewport), | 25 viewport(viewport), |
| 26 clip(clip), | 26 clip(clip), |
| 27 viewport_rect_for_tile_priority(viewport_rect_for_tile_priority), | 27 viewport_rect_for_tile_priority(viewport_rect_for_tile_priority), |
| 28 transform_for_tile_priority(transform_for_tile_priority) {} | 28 transform_for_tile_priority(transform_for_tile_priority) {} |
| 29 | 29 |
| 30 SyncCompositorDemandDrawHwParams::~SyncCompositorDemandDrawHwParams() {} | 30 SyncCompositorDemandDrawHwParams::~SyncCompositorDemandDrawHwParams() {} |
| 31 | 31 |
| 32 SyncCompositorSetSharedMemoryParams::SyncCompositorSetSharedMemoryParams() |
| 33 : buffer_size(0u) {} |
| 34 |
| 32 SyncCompositorDemandDrawSwParams::SyncCompositorDemandDrawSwParams() {} | 35 SyncCompositorDemandDrawSwParams::SyncCompositorDemandDrawSwParams() {} |
| 33 | 36 |
| 34 SyncCompositorDemandDrawSwParams::~SyncCompositorDemandDrawSwParams() {} | 37 SyncCompositorDemandDrawSwParams::~SyncCompositorDemandDrawSwParams() {} |
| 35 | 38 |
| 36 SyncCompositorCommonRendererParams::SyncCompositorCommonRendererParams() | 39 SyncCompositorCommonRendererParams::SyncCompositorCommonRendererParams() |
| 37 : version(0u), | 40 : version(0u), |
| 38 page_scale_factor(0.f), | 41 page_scale_factor(0.f), |
| 39 min_page_scale_factor(0.f), | 42 min_page_scale_factor(0.f), |
| 40 max_page_scale_factor(0.f), | 43 max_page_scale_factor(0.f), |
| 41 need_animate_scroll(false), | 44 need_animate_scroll(false), |
| 42 need_invalidate(false), | 45 need_invalidate(false), |
| 43 need_begin_frame(false), | 46 need_begin_frame(false), |
| 44 did_activate_pending_tree(false) {} | 47 did_activate_pending_tree(false) {} |
| 45 | 48 |
| 46 SyncCompositorCommonRendererParams::~SyncCompositorCommonRendererParams() {} | 49 SyncCompositorCommonRendererParams::~SyncCompositorCommonRendererParams() {} |
| 47 | 50 |
| 48 } // namespace content | 51 } // namespace content |
| OLD | NEW |