| Index: third_party/WebKit/Source/core/layout/TracedLayoutObject.h
|
| diff --git a/third_party/WebKit/Source/core/layout/TracedLayoutObject.h b/third_party/WebKit/Source/core/layout/TracedLayoutObject.h
|
| index 4f03b9bebe2c9d56438a068c709d380b8663c94b..085b558b46ebe43896a17e6e8b799daf5c40b417 100644
|
| --- a/third_party/WebKit/Source/core/layout/TracedLayoutObject.h
|
| +++ b/third_party/WebKit/Source/core/layout/TracedLayoutObject.h
|
| @@ -6,6 +6,7 @@
|
| #define TracedLayoutObject_h
|
|
|
| #include "platform/TracedValue.h"
|
| +#include <memory>
|
|
|
| namespace blink {
|
|
|
| @@ -13,7 +14,7 @@ class LayoutView;
|
|
|
| class TracedLayoutObject {
|
| public:
|
| - static PassOwnPtr<TracedValue> create(const LayoutView&, bool traceGeometry = true);
|
| + static std::unique_ptr<TracedValue> create(const LayoutView&, bool traceGeometry = true);
|
| };
|
|
|
| } // namespace blink
|
|
|