| Index: third_party/WebKit/Source/core/layout/LayoutAnalyzer.h
|
| diff --git a/third_party/WebKit/Source/core/layout/LayoutAnalyzer.h b/third_party/WebKit/Source/core/layout/LayoutAnalyzer.h
|
| index 00c7a0dd72d4041d7258551dc8e4c3fd8ced9e3a..cda9ffb1d4e6233ddfa3498469862980df6aa906 100644
|
| --- a/third_party/WebKit/Source/core/layout/LayoutAnalyzer.h
|
| +++ b/third_party/WebKit/Source/core/layout/LayoutAnalyzer.h
|
| @@ -8,7 +8,7 @@
|
| #include "platform/LayoutUnit.h"
|
| #include "wtf/Allocator.h"
|
| #include "wtf/Noncopyable.h"
|
| -#include "wtf/PassOwnPtr.h"
|
| +#include <memory>
|
|
|
| namespace blink {
|
|
|
| @@ -82,7 +82,7 @@ public:
|
| m_counters[counter] += delta;
|
| }
|
|
|
| - PassOwnPtr<TracedValue> toTracedValue();
|
| + std::unique_ptr<TracedValue> toTracedValue();
|
|
|
| private:
|
| const char* nameForCounter(Counter) const;
|
|
|