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

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

Issue 2870773003: Move EditorClientImpl.cpp out of web/ to core/page/EditorClient.cpp (Closed)
Patch Set: Created 3 years, 7 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/web/WebViewImpl.cpp
diff --git a/third_party/WebKit/Source/web/WebViewImpl.cpp b/third_party/WebKit/Source/web/WebViewImpl.cpp
index 32bfe0a1f7bd6404309540f6d3822ce589191ca1..b879e86726294aff1d7171309e7f110c2a4abf6a 100644
--- a/third_party/WebKit/Source/web/WebViewImpl.cpp
+++ b/third_party/WebKit/Source/web/WebViewImpl.cpp
@@ -340,7 +340,7 @@ WebViewImpl::WebViewImpl(WebViewClient* client,
spell_check_client_(nullptr),
chrome_client_impl_(ChromeClientImpl::Create(this)),
context_menu_client_impl_(this),
- editor_client_impl_(this),
+ editor_client_(this),
spell_checker_client_impl_(this),
storage_client_impl_(this),
should_auto_resize_(false),
@@ -389,7 +389,7 @@ WebViewImpl::WebViewImpl(WebViewClient* client,
Page::PageClients page_clients;
page_clients.chrome_client = chrome_client_impl_.Get();
page_clients.context_menu_client = &context_menu_client_impl_;
- page_clients.editor_client = &editor_client_impl_;
+ page_clients.editor_client = &editor_client_;
page_clients.spell_checker_client = &spell_checker_client_impl_;
page_ = Page::CreateOrdinary(page_clients);

Powered by Google App Engine
This is Rietveld 408576698