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

Side by Side Diff: cc/trees/proxy_impl.h

Issue 2267263002: cc: Delete all the RendererCapabilities. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@remove-prepare-mailbox-param
Patch Set: renderer-caps: rebase Created 4 years, 3 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 | « cc/trees/proxy.h ('k') | cc/trees/proxy_impl.cc » ('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 #ifndef CC_TREES_PROXY_IMPL_H_ 5 #ifndef CC_TREES_PROXY_IMPL_H_
6 #define CC_TREES_PROXY_IMPL_H_ 6 #define CC_TREES_PROXY_IMPL_H_
7 7
8 #include <memory> 8 #include <memory>
9 9
10 #include "base/macros.h" 10 #include "base/macros.h"
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
58 private: 58 private:
59 // The members of this struct should be accessed on the impl thread only when 59 // The members of this struct should be accessed on the impl thread only when
60 // the main thread is blocked for a commit. 60 // the main thread is blocked for a commit.
61 struct BlockedMainCommitOnly { 61 struct BlockedMainCommitOnly {
62 BlockedMainCommitOnly(); 62 BlockedMainCommitOnly();
63 ~BlockedMainCommitOnly(); 63 ~BlockedMainCommitOnly();
64 LayerTreeHost* layer_tree_host; 64 LayerTreeHost* layer_tree_host;
65 }; 65 };
66 66
67 // LayerTreeHostImplClient implementation 67 // LayerTreeHostImplClient implementation
68 void UpdateRendererCapabilitiesOnImplThread() override;
69 void DidLoseOutputSurfaceOnImplThread() override; 68 void DidLoseOutputSurfaceOnImplThread() override;
70 void CommitVSyncParameters(base::TimeTicks timebase, 69 void CommitVSyncParameters(base::TimeTicks timebase,
71 base::TimeDelta interval) override; 70 base::TimeDelta interval) override;
72 void SetBeginFrameSource(BeginFrameSource* source) override; 71 void SetBeginFrameSource(BeginFrameSource* source) override;
73 void SetEstimatedParentDrawTime(base::TimeDelta draw_time) override; 72 void SetEstimatedParentDrawTime(base::TimeDelta draw_time) override;
74 void DidSwapBuffersCompleteOnImplThread() override; 73 void DidSwapBuffersCompleteOnImplThread() override;
75 void OnCanDrawStateChanged(bool can_draw) override; 74 void OnCanDrawStateChanged(bool can_draw) override;
76 void NotifyReadyToActivate() override; 75 void NotifyReadyToActivate() override;
77 void NotifyReadyToDraw() override; 76 void NotifyReadyToDraw() override;
78 // Please call these 3 functions through 77 // Please call these 3 functions through
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after
151 // Use accessors instead of this variable directly. 150 // Use accessors instead of this variable directly.
152 BlockedMainCommitOnly main_thread_blocked_commit_vars_unsafe_; 151 BlockedMainCommitOnly main_thread_blocked_commit_vars_unsafe_;
153 BlockedMainCommitOnly& blocked_main_commit(); 152 BlockedMainCommitOnly& blocked_main_commit();
154 153
155 DISALLOW_COPY_AND_ASSIGN(ProxyImpl); 154 DISALLOW_COPY_AND_ASSIGN(ProxyImpl);
156 }; 155 };
157 156
158 } // namespace cc 157 } // namespace cc
159 158
160 #endif // CC_TREES_PROXY_IMPL_H_ 159 #endif // CC_TREES_PROXY_IMPL_H_
OLDNEW
« no previous file with comments | « cc/trees/proxy.h ('k') | cc/trees/proxy_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698