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

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

Issue 1039533002: cc: Add support for sending BeginFrames for video. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@misc_video_refactoring
Patch Set: Fix comment. Created 5 years, 8 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/layer_tree_impl.cc ('k') | cc/trees/single_thread_proxy.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 2011 The Chromium Authors. All rights reserved. 1 // Copyright 2011 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_SINGLE_THREAD_PROXY_H_ 5 #ifndef CC_TREES_SINGLE_THREAD_PROXY_H_
6 #define CC_TREES_SINGLE_THREAD_PROXY_H_ 6 #define CC_TREES_SINGLE_THREAD_PROXY_H_
7 7
8 #include <limits> 8 #include <limits>
9 9
10 #include "base/cancelable_callback.h" 10 #include "base/cancelable_callback.h"
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after
93 void DidSwapBuffersOnImplThread() override; 93 void DidSwapBuffersOnImplThread() override;
94 void DidSwapBuffersCompleteOnImplThread() override; 94 void DidSwapBuffersCompleteOnImplThread() override;
95 void OnCanDrawStateChanged(bool can_draw) override; 95 void OnCanDrawStateChanged(bool can_draw) override;
96 void NotifyReadyToActivate() override; 96 void NotifyReadyToActivate() override;
97 void NotifyReadyToDraw() override; 97 void NotifyReadyToDraw() override;
98 void SetNeedsRedrawOnImplThread() override; 98 void SetNeedsRedrawOnImplThread() override;
99 void SetNeedsRedrawRectOnImplThread(const gfx::Rect& dirty_rect) override; 99 void SetNeedsRedrawRectOnImplThread(const gfx::Rect& dirty_rect) override;
100 void SetNeedsAnimateOnImplThread() override; 100 void SetNeedsAnimateOnImplThread() override;
101 void SetNeedsPrepareTilesOnImplThread() override; 101 void SetNeedsPrepareTilesOnImplThread() override;
102 void SetNeedsCommitOnImplThread() override; 102 void SetNeedsCommitOnImplThread() override;
103 void SetVideoNeedsBeginFrames(bool needs_begin_frames) override;
103 void PostAnimationEventsToMainThreadOnImplThread( 104 void PostAnimationEventsToMainThreadOnImplThread(
104 scoped_ptr<AnimationEventsVector> events) override; 105 scoped_ptr<AnimationEventsVector> events) override;
105 bool ReduceContentsTextureMemoryOnImplThread(size_t limit_bytes, 106 bool ReduceContentsTextureMemoryOnImplThread(size_t limit_bytes,
106 int priority_cutoff) override; 107 int priority_cutoff) override;
107 bool IsInsideDraw() override; 108 bool IsInsideDraw() override;
108 void RenewTreePriority() override {} 109 void RenewTreePriority() override {}
109 void PostDelayedAnimationTaskOnImplThread(const base::Closure& task, 110 void PostDelayedAnimationTaskOnImplThread(const base::Closure& task,
110 base::TimeDelta delay) override {} 111 base::TimeDelta delay) override {}
111 void DidActivateSyncTree() override; 112 void DidActivateSyncTree() override;
112 void DidPrepareTiles() override; 113 void DidPrepareTiles() override;
(...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after
235 private: 236 private:
236 DebugScopedSetImplThread impl_thread_; 237 DebugScopedSetImplThread impl_thread_;
237 DebugScopedSetMainThreadBlocked main_thread_blocked_; 238 DebugScopedSetMainThreadBlocked main_thread_blocked_;
238 239
239 DISALLOW_COPY_AND_ASSIGN(DebugScopedSetImplThreadAndMainThreadBlocked); 240 DISALLOW_COPY_AND_ASSIGN(DebugScopedSetImplThreadAndMainThreadBlocked);
240 }; 241 };
241 242
242 } // namespace cc 243 } // namespace cc
243 244
244 #endif // CC_TREES_SINGLE_THREAD_PROXY_H_ 245 #endif // CC_TREES_SINGLE_THREAD_PROXY_H_
OLDNEW
« no previous file with comments | « cc/trees/layer_tree_impl.cc ('k') | cc/trees/single_thread_proxy.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698