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

Side by Side Diff: content/common/android/sync_compositor_messages.cc

Issue 1958803003: sync compostor: Return resources async IPC (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 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 unified diff | Download patch
OLDNEW
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),
12 update_root_scroll_offset(false), 11 update_root_scroll_offset(false),
13 begin_frame_source_paused(false) {} 12 begin_frame_source_paused(false) {}
14 13
15 SyncCompositorCommonBrowserParams::~SyncCompositorCommonBrowserParams() {} 14 SyncCompositorCommonBrowserParams::~SyncCompositorCommonBrowserParams() {}
16 15
17 SyncCompositorDemandDrawHwParams::SyncCompositorDemandDrawHwParams() {} 16 SyncCompositorDemandDrawHwParams::SyncCompositorDemandDrawHwParams() {}
18 17
19 SyncCompositorDemandDrawHwParams::SyncCompositorDemandDrawHwParams( 18 SyncCompositorDemandDrawHwParams::SyncCompositorDemandDrawHwParams(
20 const gfx::Size& surface_size, 19 const gfx::Size& surface_size,
21 const gfx::Transform& transform, 20 const gfx::Transform& transform,
(...skipping 23 matching lines...) Expand all
45 min_page_scale_factor(0.f), 44 min_page_scale_factor(0.f),
46 max_page_scale_factor(0.f), 45 max_page_scale_factor(0.f),
47 need_animate_scroll(false), 46 need_animate_scroll(false),
48 need_invalidate_count(0u), 47 need_invalidate_count(0u),
49 need_begin_frame(false), 48 need_begin_frame(false),
50 did_activate_pending_tree_count(0u) {} 49 did_activate_pending_tree_count(0u) {}
51 50
52 SyncCompositorCommonRendererParams::~SyncCompositorCommonRendererParams() {} 51 SyncCompositorCommonRendererParams::~SyncCompositorCommonRendererParams() {}
53 52
54 } // namespace content 53 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698