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

Unified Diff: cc/resources/tile.cc

Issue 20667002: cc: Add frame data to LTHI tracing (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: add category thing Created 7 years, 4 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
Index: cc/resources/tile.cc
diff --git a/cc/resources/tile.cc b/cc/resources/tile.cc
index ab4fe7af54949b6da6ced7f2813cdbb8d6764447..3ccc5bddf293d31c89649c1a57017f6d1a899949 100644
--- a/cc/resources/tile.cc
+++ b/cc/resources/tile.cc
@@ -43,7 +43,8 @@ Tile::~Tile() {
scoped_ptr<base::Value> Tile::AsValue() const {
scoped_ptr<base::DictionaryValue> res(new base::DictionaryValue());
- TracedValue::MakeDictIntoImplicitSnapshot(res.get(), "cc::Tile", this);
+ TracedValue::MakeDictIntoImplicitSnapshot(
+ TRACE_DISABLED_BY_DEFAULT("cc.debug"), res.get(), "cc::Tile", this);
res->Set("picture_pile",
TracedValue::CreateIDRef(picture_pile_.get()).release());
res->SetDouble("contents_scale", contents_scale_);

Powered by Google App Engine
This is Rietveld 408576698