| 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), | 10 : bytes_limit(0u), |
| 11 output_surface_id_for_returned_resources(0u), |
| 11 update_root_scroll_offset(false), | 12 update_root_scroll_offset(false), |
| 12 begin_frame_source_paused(false) {} | 13 begin_frame_source_paused(false) {} |
| 13 | 14 |
| 14 SyncCompositorCommonBrowserParams::~SyncCompositorCommonBrowserParams() {} | 15 SyncCompositorCommonBrowserParams::~SyncCompositorCommonBrowserParams() {} |
| 15 | 16 |
| 16 SyncCompositorDemandDrawHwParams::SyncCompositorDemandDrawHwParams() {} | 17 SyncCompositorDemandDrawHwParams::SyncCompositorDemandDrawHwParams() {} |
| 17 | 18 |
| 18 SyncCompositorDemandDrawHwParams::SyncCompositorDemandDrawHwParams( | 19 SyncCompositorDemandDrawHwParams::SyncCompositorDemandDrawHwParams( |
| 19 const gfx::Size& surface_size, | 20 const gfx::Size& surface_size, |
| 20 const gfx::Transform& transform, | 21 const gfx::Transform& transform, |
| (...skipping 23 matching lines...) Expand all Loading... |
| 44 min_page_scale_factor(0.f), | 45 min_page_scale_factor(0.f), |
| 45 max_page_scale_factor(0.f), | 46 max_page_scale_factor(0.f), |
| 46 need_animate_scroll(false), | 47 need_animate_scroll(false), |
| 47 need_invalidate_count(0u), | 48 need_invalidate_count(0u), |
| 48 need_begin_frame(false), | 49 need_begin_frame(false), |
| 49 did_activate_pending_tree_count(0u) {} | 50 did_activate_pending_tree_count(0u) {} |
| 50 | 51 |
| 51 SyncCompositorCommonRendererParams::~SyncCompositorCommonRendererParams() {} | 52 SyncCompositorCommonRendererParams::~SyncCompositorCommonRendererParams() {} |
| 52 | 53 |
| 53 } // namespace content | 54 } // namespace content |
| OLD | NEW |