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