| 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 3302698ed2e50427d5ee1cee8a839406b2961cac..d60ad77fb96aa355c955eab02b384e2f0410380c 100644
|
| --- a/third_party/WebKit/Source/platform/TracedValue.cpp
|
| +++ b/third_party/WebKit/Source/platform/TracedValue.cpp
|
| @@ -5,13 +5,15 @@
|
| #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 {
|
|
|
| -PassOwnPtr<TracedValue> TracedValue::create()
|
| +std::unique_ptr<TracedValue> TracedValue::create()
|
| {
|
| - return adoptPtr(new TracedValue());
|
| + return wrapUnique(new TracedValue());
|
| }
|
|
|
| TracedValue::TracedValue()
|
|
|