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

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

Issue 2160743002: sync compositor: Reduce begin frame sync IPC overhead (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: clang format Created 4 years, 4 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
« no previous file with comments | « content/common/android/sync_compositor_messages.h ('k') | content/content_browser.gypi » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 SyncCompositorDemandDrawHwParams::SyncCompositorDemandDrawHwParams() {} 9 SyncCompositorDemandDrawHwParams::SyncCompositorDemandDrawHwParams() {}
10 10
(...skipping 13 matching lines...) Expand all
24 24
25 SyncCompositorDemandDrawHwParams::~SyncCompositorDemandDrawHwParams() {} 25 SyncCompositorDemandDrawHwParams::~SyncCompositorDemandDrawHwParams() {}
26 26
27 SyncCompositorSetSharedMemoryParams::SyncCompositorSetSharedMemoryParams() 27 SyncCompositorSetSharedMemoryParams::SyncCompositorSetSharedMemoryParams()
28 : buffer_size(0u) {} 28 : buffer_size(0u) {}
29 29
30 SyncCompositorDemandDrawSwParams::SyncCompositorDemandDrawSwParams() {} 30 SyncCompositorDemandDrawSwParams::SyncCompositorDemandDrawSwParams() {}
31 31
32 SyncCompositorDemandDrawSwParams::~SyncCompositorDemandDrawSwParams() {} 32 SyncCompositorDemandDrawSwParams::~SyncCompositorDemandDrawSwParams() {}
33 33
34 SyncCompositorCommonRendererParams::SyncCompositorCommonRendererParams() 34 SyncCompositorCommonRendererParams::SyncCompositorCommonRendererParams() =
35 : version(0u), 35 default;
36 page_scale_factor(0.f), 36
37 min_page_scale_factor(0.f), 37 SyncCompositorCommonRendererParams::SyncCompositorCommonRendererParams(
38 max_page_scale_factor(0.f), 38 const SyncCompositorCommonRendererParams& other) = default;
39 need_animate_scroll(false),
40 need_invalidate_count(0u),
41 did_activate_pending_tree_count(0u) {}
42 39
43 SyncCompositorCommonRendererParams::~SyncCompositorCommonRendererParams() {} 40 SyncCompositorCommonRendererParams::~SyncCompositorCommonRendererParams() {}
44 41
42 SyncCompositorCommonRendererParams& SyncCompositorCommonRendererParams::
43 operator=(const SyncCompositorCommonRendererParams& other) = default;
44
45 } // namespace content 45 } // namespace content
OLDNEW
« no previous file with comments | « content/common/android/sync_compositor_messages.h ('k') | content/content_browser.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698