| Index: third_party/WebKit/Source/platform/EventTracer.h
|
| diff --git a/third_party/WebKit/Source/platform/EventTracer.h b/third_party/WebKit/Source/platform/EventTracer.h
|
| index 4f896619f4705a903bd34c18ed1caec8dff14e24..2b1f9c14457071b36e4cb0d56a0bc046cd258a20 100644
|
| --- a/third_party/WebKit/Source/platform/EventTracer.h
|
| +++ b/third_party/WebKit/Source/platform/EventTracer.h
|
| @@ -33,9 +33,7 @@
|
|
|
| #include "platform/PlatformExport.h"
|
| #include "wtf/Allocator.h"
|
| -#include "wtf/PassOwnPtr.h"
|
| #include "wtf/text/WTFString.h"
|
| -
|
| #include <memory>
|
| #include <stdint.h>
|
|
|
| @@ -78,8 +76,8 @@ public:
|
| const char* argNames[],
|
| const unsigned char argTypes[],
|
| const unsigned long long argValues[],
|
| - PassOwnPtr<TracedValue>,
|
| - PassOwnPtr<TracedValue>,
|
| + std::unique_ptr<TracedValue>,
|
| + std::unique_ptr<TracedValue>,
|
| unsigned flags);
|
| static TraceEvent::TraceEventHandle addTraceEvent(char phase,
|
| const unsigned char* categoryEnabledFlag,
|
|
|