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

Unified Diff: ui/compositor/layer.cc

Issue 61883006: Compositor thread plumbing for layout rectangle debug info. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Changed to scoped_refptr for interfaces. Created 7 years 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
Index: ui/compositor/layer.cc
diff --git a/ui/compositor/layer.cc b/ui/compositor/layer.cc
index a0858a6cca8248e92f9a9082d980456342174db8..2e2fc221767363997a5eb7eee43b2396607de301 100644
--- a/ui/compositor/layer.cc
+++ b/ui/compositor/layer.cc
@@ -667,6 +667,10 @@ std::string Layer::DebugName() {
return name_;
}
+scoped_refptr<base::debug::ConvertableToTraceFormat> Layer::TakeDebugInfo() {
+ return scoped_refptr<base::debug::ConvertableToTraceFormat>(NULL);
danakj 2013/12/03 00:38:18 Maybe a TODO here to return some useful data so we
chrishtr_gmail.com 2013/12/03 00:44:08 Done.
+}
+
void Layer::OnAnimationStarted(const cc::AnimationEvent& event) {
if (animator_.get())
animator_->OnThreadedAnimationStarted(event);

Powered by Google App Engine
This is Rietveld 408576698