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

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

Issue 1137823002: Pass collected frame timing events to Blink (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Missed implementing virtual function on Android html_viewer. Created 5 years, 6 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_host_unittest_no_message_loop.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 95 matching lines...) Expand 10 before | Expand all | Expand 10 after
106 bool ReduceContentsTextureMemoryOnImplThread(size_t limit_bytes, 106 bool ReduceContentsTextureMemoryOnImplThread(size_t limit_bytes,
107 int priority_cutoff) override; 107 int priority_cutoff) override;
108 bool IsInsideDraw() override; 108 bool IsInsideDraw() override;
109 void RenewTreePriority() override {} 109 void RenewTreePriority() override {}
110 void PostDelayedAnimationTaskOnImplThread(const base::Closure& task, 110 void PostDelayedAnimationTaskOnImplThread(const base::Closure& task,
111 base::TimeDelta delay) override {} 111 base::TimeDelta delay) override {}
112 void DidActivateSyncTree() override; 112 void DidActivateSyncTree() override;
113 void DidPrepareTiles() override; 113 void DidPrepareTiles() override;
114 void DidCompletePageScaleAnimationOnImplThread() override; 114 void DidCompletePageScaleAnimationOnImplThread() override;
115 void OnDrawForOutputSurface() override; 115 void OnDrawForOutputSurface() override;
116 void PostFrameTimingEventsOnImplThread(
117 scoped_ptr<FrameTimingTracker::CompositeTimingSet> composite_events,
118 scoped_ptr<FrameTimingTracker::MainFrameTimingSet> main_frame_events)
119 override;
116 120
117 void SetDebugState(const LayerTreeDebugState& debug_state) override {} 121 void SetDebugState(const LayerTreeDebugState& debug_state) override {}
118 122
119 void RequestNewOutputSurface(); 123 void RequestNewOutputSurface();
120 124
121 // Called by the legacy path where RenderWidget does the scheduling. 125 // Called by the legacy path where RenderWidget does the scheduling.
122 void CompositeImmediately(base::TimeTicks frame_begin_time); 126 void CompositeImmediately(base::TimeTicks frame_begin_time);
123 127
124 protected: 128 protected:
125 SingleThreadProxy( 129 SingleThreadProxy(
(...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after
237 private: 241 private:
238 DebugScopedSetImplThread impl_thread_; 242 DebugScopedSetImplThread impl_thread_;
239 DebugScopedSetMainThreadBlocked main_thread_blocked_; 243 DebugScopedSetMainThreadBlocked main_thread_blocked_;
240 244
241 DISALLOW_COPY_AND_ASSIGN(DebugScopedSetImplThreadAndMainThreadBlocked); 245 DISALLOW_COPY_AND_ASSIGN(DebugScopedSetImplThreadAndMainThreadBlocked);
242 }; 246 };
243 247
244 } // namespace cc 248 } // namespace cc
245 249
246 #endif // CC_TREES_SINGLE_THREAD_PROXY_H_ 250 #endif // CC_TREES_SINGLE_THREAD_PROXY_H_
OLDNEW
« no previous file with comments | « cc/trees/layer_tree_host_unittest_no_message_loop.cc ('k') | cc/trees/single_thread_proxy.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698