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

Unified Diff: third_party/WebKit/Source/modules/ModulesInitializer.cpp

Issue 2931443003: Add support for Android spellcheck menu in Chrome/WebViews (Closed)
Patch Set: Re-upload with no changes because I screwed something up trying to cancel the last upload when I sa… Created 3 years, 6 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/modules/ModulesInitializer.cpp
diff --git a/third_party/WebKit/Source/modules/ModulesInitializer.cpp b/third_party/WebKit/Source/modules/ModulesInitializer.cpp
index ede49eb568ff8c28a6ccedbfb770bbb46457cde8..a5d3a34c593c71082600fddca794d6b99130bf64 100644
--- a/third_party/WebKit/Source/modules/ModulesInitializer.cpp
+++ b/third_party/WebKit/Source/modules/ModulesInitializer.cpp
@@ -8,6 +8,7 @@
#include "core/EventTypeNames.h"
#include "core/css/CSSPaintImageGenerator.h"
#include "core/dom/Document.h"
+#include "core/editing/suggestion/TextSuggestionBackendImpl.h"
#include "core/exported/WebSharedWorkerImpl.h"
#include "core/frame/LocalFrame.h"
#include "core/html/HTMLCanvasElement.h"
@@ -100,6 +101,8 @@ void ModulesInitializer::Initialize() {
// frame()->document().
frame->GetInterfaceRegistry()->AddInterface(WTF::Bind(
&AppBannerController::BindMojoRequest, WrapWeakPersistent(frame)));
+ frame->GetInterfaceRegistry()->AddInterface(WTF::Bind(
+ &TextSuggestionBackendImpl::Create, WrapWeakPersistent(frame)));
});
// WebSharedWorkerImpl callbacks for modules initialization.

Powered by Google App Engine
This is Rietveld 408576698