Index: third_party/WebKit/Source/platform/TracedValue.cpp |
diff --git a/third_party/WebKit/Source/platform/TracedValue.cpp b/third_party/WebKit/Source/platform/TracedValue.cpp |
index d60ad77fb96aa355c955eab02b384e2f0410380c..3302698ed2e50427d5ee1cee8a839406b2961cac 100644 |
--- a/third_party/WebKit/Source/platform/TracedValue.cpp |
+++ b/third_party/WebKit/Source/platform/TracedValue.cpp |
@@ -5,15 +5,13 @@ |
#include "platform/TracedValue.h" |
#include "base/trace_event/trace_event_argument.h" |
-#include "wtf/PtrUtil.h" |
#include "wtf/text/StringUTF8Adaptor.h" |
-#include <memory> |
namespace blink { |
-std::unique_ptr<TracedValue> TracedValue::create() |
+PassOwnPtr<TracedValue> TracedValue::create() |
{ |
- return wrapUnique(new TracedValue()); |
+ return adoptPtr(new TracedValue()); |
} |
TracedValue::TracedValue() |