| Index: third_party/WebKit/Source/web/WebLocalFrameImpl.h
|
| diff --git a/third_party/WebKit/Source/web/WebLocalFrameImpl.h b/third_party/WebKit/Source/web/WebLocalFrameImpl.h
|
| index a05039bd75f1486b0cb5795ddc36f763443963f8..8e98f5ab52702942ae8cb105279a1ab2fde4a6fc 100644
|
| --- a/third_party/WebKit/Source/web/WebLocalFrameImpl.h
|
| +++ b/third_party/WebKit/Source/web/WebLocalFrameImpl.h
|
| @@ -43,8 +43,8 @@
|
| #include "web/WebExport.h"
|
| #include "web/WebFrameImplBase.h"
|
| #include "wtf/Compiler.h"
|
| -#include "wtf/OwnPtr.h"
|
| #include "wtf/text/WTFString.h"
|
| +#include <memory>
|
|
|
| namespace blink {
|
|
|
| @@ -371,7 +371,7 @@ private:
|
| WebFrameClient* m_client;
|
| WebAutofillClient* m_autofillClient;
|
| WebContentSettingsClient* m_contentSettingsClient;
|
| - OwnPtr<SharedWorkerRepositoryClientImpl> m_sharedWorkerRepositoryClient;
|
| + std::unique_ptr<SharedWorkerRepositoryClientImpl> m_sharedWorkerRepositoryClient;
|
|
|
| // Will be initialized after first call to find() or scopeStringMatches().
|
| Member<TextFinder> m_textFinder;
|
|
|