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

Unified Diff: third_party/WebKit/Source/platform/TracedValue.h

Issue 1717283003: tracing: Make ConvertableToTraceFormat move-only scoped_ptr (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 years, 10 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: third_party/WebKit/Source/platform/TracedValue.h
diff --git a/third_party/WebKit/Source/platform/TracedValue.h b/third_party/WebKit/Source/platform/TracedValue.h
index 0e691da1e95beac2fe62e5ab5dac74af940bab0a..bd93221f85aeee2c923077340818d19f36ef705c 100644
--- a/third_party/WebKit/Source/platform/TracedValue.h
+++ b/third_party/WebKit/Source/platform/TracedValue.h
@@ -51,7 +51,7 @@ private:
// This will be moved (and become null) when TracedValue is passed to
// EventTracer::addTraceEvent().
- scoped_refptr<base::trace_event::TracedValue> m_tracedValue;
+ scoped_ptr<base::trace_event::TracedValue> m_tracedValue;
friend class EventTracer;
};

Powered by Google App Engine
This is Rietveld 408576698