| Index: Source/web/NavigatorContentUtilsClientImpl.h
|
| diff --git a/Source/web/NavigatorContentUtilsClientImpl.h b/Source/web/NavigatorContentUtilsClientImpl.h
|
| index e8de7563da342eb1a92ec7ab2534290671096001..c2f6dd65c23b35ac601ca357a3a92ca9cd6c3195 100644
|
| --- a/Source/web/NavigatorContentUtilsClientImpl.h
|
| +++ b/Source/web/NavigatorContentUtilsClientImpl.h
|
| @@ -10,11 +10,11 @@
|
|
|
| namespace blink {
|
|
|
| -class WebViewImpl;
|
| +class WebLocalFrameImpl;
|
|
|
| class NavigatorContentUtilsClientImpl final : public NavigatorContentUtilsClient {
|
| public:
|
| - static PassOwnPtr<NavigatorContentUtilsClientImpl> create(WebViewImpl*);
|
| + static PassOwnPtr<NavigatorContentUtilsClientImpl> create(WebLocalFrameImpl*);
|
| ~NavigatorContentUtilsClientImpl() override { }
|
|
|
| void registerProtocolHandler(const String& scheme, const KURL&, const String& title) override;
|
| @@ -22,9 +22,9 @@ public:
|
| void unregisterProtocolHandler(const String& scheme, const KURL&) override;
|
|
|
| private:
|
| - explicit NavigatorContentUtilsClientImpl(WebViewImpl*);
|
| + explicit NavigatorContentUtilsClientImpl(WebLocalFrameImpl*);
|
|
|
| - WebViewImpl* m_webView;
|
| + WebLocalFrameImpl* m_webFrame;
|
| };
|
|
|
| } // namespace blink
|
|
|