| Index: third_party/WebKit/Source/core/loader/FrameLoader.h
|
| diff --git a/third_party/WebKit/Source/core/loader/FrameLoader.h b/third_party/WebKit/Source/core/loader/FrameLoader.h
|
| index d01a8d7f2a42df8732a920a2b069c8e30deed548..c762e76f55d9d49a170d71c27fb42712518342cc 100644
|
| --- a/third_party/WebKit/Source/core/loader/FrameLoader.h
|
| +++ b/third_party/WebKit/Source/core/loader/FrameLoader.h
|
| @@ -49,6 +49,7 @@
|
| #include "public/platform/WebInsecureRequestPolicy.h"
|
| #include "wtf/Forward.h"
|
| #include "wtf/HashSet.h"
|
| +#include <memory>
|
|
|
| namespace blink {
|
|
|
| @@ -220,12 +221,12 @@ private:
|
|
|
| void detachDocumentLoader(Member<DocumentLoader>&);
|
|
|
| - PassOwnPtr<TracedValue> toTracedValue() const;
|
| + std::unique_ptr<TracedValue> toTracedValue() const;
|
| void takeObjectSnapshot() const;
|
|
|
| Member<LocalFrame> m_frame;
|
|
|
| - // FIXME: These should be OwnPtr<T> to reduce build times and simplify
|
| + // FIXME: These should be std::unique_ptr<T> to reduce build times and simplify
|
| // header dependencies unless performance testing proves otherwise.
|
| // Some of these could be lazily created for memory savings on devices.
|
| mutable FrameLoaderStateMachine m_stateMachine;
|
|
|