| Index: third_party/WebKit/public/web/WebFrame.h
|
| diff --git a/third_party/WebKit/public/web/WebFrame.h b/third_party/WebKit/public/web/WebFrame.h
|
| index 39f6dc66301de05a3cdb952f7cde7b27c54b8322..5a295c7467f7682a58b14b3ef002e2d2d8ba01d0 100644
|
| --- a/third_party/WebKit/public/web/WebFrame.h
|
| +++ b/third_party/WebKit/public/web/WebFrame.h
|
| @@ -40,12 +40,12 @@
|
| #include "public/platform/WebCanvas.h"
|
| #include "public/platform/WebInsecureRequestPolicy.h"
|
| #include "public/platform/WebMessagePortChannel.h"
|
| -#include "public/platform/WebPrivateOwnPtr.h"
|
| #include "public/platform/WebReferrerPolicy.h"
|
| #include "public/platform/WebURL.h"
|
| #include "public/platform/WebURLRequest.h"
|
| #include "public/web/WebFrameLoadType.h"
|
| #include "public/web/WebTreeScopeType.h"
|
| +#include <memory>
|
|
|
| struct NPObject;
|
|
|
| @@ -516,7 +516,7 @@ private:
|
| WebFrame* m_lastChild;
|
|
|
| WebFrame* m_opener;
|
| - WebPrivateOwnPtr<OpenedFrameTracker> m_openedFrameTracker;
|
| + std::unique_ptr<OpenedFrameTracker> m_openedFrameTracker;
|
| };
|
|
|
| } // namespace blink
|
|
|