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

Unified Diff: chrome/renderer/chrome_content_renderer_client.cc

Issue 2792233003: Split SpellCheckPanel off SpellCheckProvider (Closed)
Patch Set: Remove histograms.xml from patch 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 | « no previous file | components/spellcheck/renderer/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/renderer/chrome_content_renderer_client.cc
diff --git a/chrome/renderer/chrome_content_renderer_client.cc b/chrome/renderer/chrome_content_renderer_client.cc
index 2dbfadb6d614bf53e152af3cb16a48aeafdf7040..77fd3cadaba22631c2b2c6b4747a090a3ef09c0f 100644
--- a/chrome/renderer/chrome_content_renderer_client.cc
+++ b/chrome/renderer/chrome_content_renderer_client.cc
@@ -160,6 +160,7 @@
#if BUILDFLAG(ENABLE_SPELLCHECK)
#include "components/spellcheck/renderer/spellcheck.h"
+#include "components/spellcheck/renderer/spellcheck_panel.h"
#include "components/spellcheck/renderer/spellcheck_provider.h"
#endif
@@ -573,6 +574,7 @@ void ChromeContentRendererClient::RenderViewCreated(
#endif
#if BUILDFLAG(ENABLE_SPELLCHECK)
new SpellCheckProvider(render_view, spellcheck_.get());
+ new SpellCheckPanel(render_view);
#endif
new prerender::PrerendererClient(render_view);
« no previous file with comments | « no previous file | components/spellcheck/renderer/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698