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

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

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/WebViewImpl.h ('k') | third_party/WebKit/Source/web/tests/WebFrameTest.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.cpp
diff --git a/third_party/WebKit/Source/web/WebViewImpl.cpp b/third_party/WebKit/Source/web/WebViewImpl.cpp
index f6586700e856de30197df47465adfd35b72ab985..3e218af95a8cd18bd00d280b8b70ae246e6ca31d 100644
--- a/third_party/WebKit/Source/web/WebViewImpl.cpp
+++ b/third_party/WebKit/Source/web/WebViewImpl.cpp
@@ -329,10 +329,6 @@ void WebViewImpl::setSpellCheckClient(WebSpellCheckClient* spellCheckClient) {
m_spellCheckClient = spellCheckClient;
}
-void WebViewImpl::setTextCheckClient(WebTextCheckClient* textCheckClient) {
- m_textCheckClient = textCheckClient;
-}
-
// static
HashSet<WebViewImpl*>& WebViewImpl::allInstances() {
DEFINE_STATIC_LOCAL(HashSet<WebViewImpl*>, allInstances, ());
@@ -343,7 +339,6 @@ WebViewImpl::WebViewImpl(WebViewClient* client,
WebPageVisibilityState visibilityState)
: m_client(client),
m_spellCheckClient(nullptr),
- m_textCheckClient(nullptr),
m_chromeClientImpl(ChromeClientImpl::create(this)),
m_contextMenuClientImpl(this),
m_editorClientImpl(this),
« no previous file with comments | « third_party/WebKit/Source/web/WebViewImpl.h ('k') | third_party/WebKit/Source/web/tests/WebFrameTest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698