| Index: third_party/WebKit/Source/web/NavigatorContentUtilsClientImpl.h
|
| diff --git a/third_party/WebKit/Source/web/NavigatorContentUtilsClientImpl.h b/third_party/WebKit/Source/web/NavigatorContentUtilsClientImpl.h
|
| index f745783740a2e51daf0a07418ccde86d78b6929d..9998f2ca03d16619903e4b95fee7e632562db872 100644
|
| --- a/third_party/WebKit/Source/web/NavigatorContentUtilsClientImpl.h
|
| +++ b/third_party/WebKit/Source/web/NavigatorContentUtilsClientImpl.h
|
| @@ -11,12 +11,12 @@
|
|
|
| namespace blink {
|
|
|
| -class WebLocalFrameImpl;
|
| +class WebLocalFrameBase;
|
|
|
| class NavigatorContentUtilsClientImpl final
|
| : public NavigatorContentUtilsClient {
|
| public:
|
| - static NavigatorContentUtilsClientImpl* Create(WebLocalFrameImpl*);
|
| + static NavigatorContentUtilsClientImpl* Create(WebLocalFrameBase*);
|
| ~NavigatorContentUtilsClientImpl() override {}
|
|
|
| void RegisterProtocolHandler(const String& scheme,
|
| @@ -29,9 +29,9 @@ class NavigatorContentUtilsClientImpl final
|
| DECLARE_VIRTUAL_TRACE();
|
|
|
| private:
|
| - explicit NavigatorContentUtilsClientImpl(WebLocalFrameImpl*);
|
| + explicit NavigatorContentUtilsClientImpl(WebLocalFrameBase*);
|
|
|
| - Member<WebLocalFrameImpl> web_frame_;
|
| + Member<WebLocalFrameBase> web_frame_;
|
| };
|
|
|
| } // namespace blink
|
|
|