| 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 2423700ac916387f4a9dba2a91a930ad6a10081b..f3b315b00a1d1fc0bd6ca754c635ab305675fcb1 100644
|
| --- a/third_party/WebKit/Source/platform/TracedValue.h
|
| +++ b/third_party/WebKit/Source/platform/TracedValue.h
|
| @@ -7,8 +7,8 @@
|
|
|
| #include "base/memory/ref_counted.h"
|
| #include "platform/EventTracer.h"
|
| -#include "wtf/PassOwnPtr.h"
|
| #include "wtf/text/WTFString.h"
|
| +#include <memory>
|
|
|
| namespace base {
|
| namespace trace_event {
|
| @@ -25,7 +25,7 @@ class PLATFORM_EXPORT TracedValue final {
|
| public:
|
| ~TracedValue();
|
|
|
| - static PassOwnPtr<TracedValue> create();
|
| + static std::unique_ptr<TracedValue> create();
|
|
|
| void endDictionary();
|
| void endArray();
|
|
|