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

Unified Diff: cc/test/layer_tree_test.cc

Issue 1137823002: Pass collected frame timing events to Blink (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Some code review cleanup. Created 5 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « cc/test/layer_tree_test.h ('k') | cc/trees/layer_tree_host.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/test/layer_tree_test.cc
diff --git a/cc/test/layer_tree_test.cc b/cc/test/layer_tree_test.cc
index bad69c3594d0f2b71799c8e06c17b8bfb1d8f45a..1f0def30ef237325b81350330d258db977c14c03 100644
--- a/cc/test/layer_tree_test.cc
+++ b/cc/test/layer_tree_test.cc
@@ -415,6 +415,16 @@ class LayerTreeHostClientForTesting : public LayerTreeHostClient,
top_controls_delta);
}
+ void RecordCompositeTimings(
+ FrameTimingTracker::CompositeTimingSet* composites) override {
+ test_hooks_->RecordCompositeTimings(composites);
+ }
+
+ void RecordRenderTimings(
+ FrameTimingTracker::MainFrameTimingSet* renders) override {
+ test_hooks_->RecordRenderTimings(renders);
+ }
+
void RequestNewOutputSurface() override {
test_hooks_->RequestNewOutputSurface();
}
« no previous file with comments | « cc/test/layer_tree_test.h ('k') | cc/trees/layer_tree_host.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698