Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2989)

Unified Diff: third_party/WebKit/Source/core/page/SpellCheckerClient.h

Issue 2795113002: Move ownership of TextCheckerClientImpl to WebLocalFrameImpl (Closed)
Patch Set: Mon Apr 3 18:57:07 PDT 2017 Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/core/page/SpellCheckerClient.h
diff --git a/third_party/WebKit/Source/core/page/SpellCheckerClient.h b/third_party/WebKit/Source/core/page/SpellCheckerClient.h
index 36a79397785973a6794ca33452a3375e1f58d18e..e6dccb9636b8792f1be543648351ab34de78c56e 100644
--- a/third_party/WebKit/Source/core/page/SpellCheckerClient.h
+++ b/third_party/WebKit/Source/core/page/SpellCheckerClient.h
@@ -31,17 +31,12 @@
namespace blink {
-class TextCheckerClient;
-
class SpellCheckerClient {
public:
virtual ~SpellCheckerClient() {}
virtual bool isSpellCheckingEnabled() = 0;
virtual void toggleSpellCheckingEnabled() = 0;
-
- virtual TextCheckerClient& textChecker() = 0;
-
virtual void updateSpellingUIWithMisspelledWord(const WTF::String&) = 0;
virtual void showSpellingUI(bool show) = 0;
virtual bool spellingUIIsShowing() = 0;

Powered by Google App Engine
This is Rietveld 408576698