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

Unified Diff: third_party/WebKit/Source/web/WebViewImpl.h

Issue 2797073002: Move WebTextCheckClient reference from WebViewImpl to WebLocalFrameImpl (Closed)
Patch Set: Spell my name correctly Created 3 years, 8 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
« no previous file with comments | « third_party/WebKit/Source/web/WebLocalFrameImpl.cpp ('k') | third_party/WebKit/Source/web/WebViewImpl.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/web/WebViewImpl.h
diff --git a/third_party/WebKit/Source/web/WebViewImpl.h b/third_party/WebKit/Source/web/WebViewImpl.h
index 8ca329839640be50f7a666bbf12288d45c0d442e..46f8d6984c80f1e906b6fe6004451220d7bb310a 100644
--- a/third_party/WebKit/Source/web/WebViewImpl.h
+++ b/third_party/WebKit/Source/web/WebViewImpl.h
@@ -175,7 +175,6 @@ class WEB_EXPORT WebViewImpl final
void setCredentialManagerClient(WebCredentialManagerClient*) override;
void setPrerendererClient(WebPrerendererClient*) override;
void setSpellCheckClient(WebSpellCheckClient*) override;
- void setTextCheckClient(WebTextCheckClient*) override;
WebSettings* settings() override;
WebString pageEncoding() const override;
bool tabsToLinks() const override;
@@ -315,8 +314,6 @@ class WEB_EXPORT WebViewImpl final
WebSpellCheckClient* spellCheckClient() { return m_spellCheckClient; }
- WebTextCheckClient* textCheckClient() { return m_textCheckClient; }
-
// Returns the page object associated with this view. This may be null when
// the page is shutting down, but will be valid at all other times.
Page* page() const { return m_page.get(); }
@@ -616,9 +613,6 @@ class WEB_EXPORT WebViewImpl final
WebViewClient* m_client; // Can be 0 (e.g. unittests, shared workers, etc.)
WebSpellCheckClient* m_spellCheckClient;
- // TODO(xiaochengh): Move this pointer to WebLocalFrameImpl.
- WebTextCheckClient* m_textCheckClient;
-
Persistent<ChromeClientImpl> m_chromeClientImpl;
ContextMenuClientImpl m_contextMenuClientImpl;
EditorClientImpl m_editorClientImpl;
« no previous file with comments | « third_party/WebKit/Source/web/WebLocalFrameImpl.cpp ('k') | third_party/WebKit/Source/web/WebViewImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698