Index: third_party/WebKit/Source/web/SpellCheckerClientImpl.h |
diff --git a/third_party/WebKit/Source/web/SpellCheckerClientImpl.h b/third_party/WebKit/Source/web/SpellCheckerClientImpl.h |
index 3476f5d95c5c9a0b6c409ec0705edb341cdd18e5..a68d274bde8c546e62b65b86f36c1b912a9c3124 100644 |
--- a/third_party/WebKit/Source/web/SpellCheckerClientImpl.h |
+++ b/third_party/WebKit/Source/web/SpellCheckerClientImpl.h |
@@ -35,13 +35,13 @@ |
namespace blink { |
-class WebViewImpl; |
+class WebViewBase; |
// TODO(xiaochengh): Split SpellCheckerClientImpl into two classes according to |
// the split that should be done to its interface. |
class SpellCheckerClientImpl final : public SpellCheckerClient { |
public: |
- explicit SpellCheckerClientImpl(WebViewImpl*); |
+ explicit SpellCheckerClientImpl(WebViewBase*); |
~SpellCheckerClientImpl() override; |
@@ -61,7 +61,7 @@ class SpellCheckerClientImpl final : public SpellCheckerClient { |
// for text fields and create a flag to over-write the default behavior. |
bool ShouldSpellcheckByDefault(); |
- WebViewImpl* web_view_; |
+ WebViewBase* web_view_; |
// This flag is set to false if spell check for this editor is manually |
// turned off. The default setting is SpellCheckAutomatic. |