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

Unified Diff: third_party/WebKit/Source/core/frame/LocalFrame.h

Issue 2931443003: Add support for Android spellcheck menu in Chrome/WebViews (Closed)
Patch Set: Respond to aelias@'s comments 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/core/frame/LocalFrame.h
diff --git a/third_party/WebKit/Source/core/frame/LocalFrame.h b/third_party/WebKit/Source/core/frame/LocalFrame.h
index feba7c0149f4ca685e2a7fb8c756e41b86deeec4..2d10b1201c4c1c4b37fe0d78b23a7466fd4cfe21 100644
--- a/third_party/WebKit/Source/core/frame/LocalFrame.h
+++ b/third_party/WebKit/Source/core/frame/LocalFrame.h
@@ -80,6 +80,7 @@ class PositionWithAffinityTemplate;
class PluginData;
class ScriptController;
class SpellChecker;
+class TextSuggestionController;
class WebFrameScheduler;
class WebPluginContainerBase;
class WebURLLoader;
@@ -150,6 +151,7 @@ class CORE_EXPORT LocalFrame final : public Frame,
NavigationScheduler& GetNavigationScheduler() const;
FrameSelection& Selection() const;
InputMethodController& GetInputMethodController() const;
+ TextSuggestionController& GetTextSuggestionController() const;
ScriptController& GetScriptController() const;
SpellChecker& GetSpellChecker() const;
FrameConsole& Console() const;
@@ -305,6 +307,7 @@ class CORE_EXPORT LocalFrame final : public Frame,
const Member<EventHandler> event_handler_;
const Member<FrameConsole> console_;
const Member<InputMethodController> input_method_controller_;
+ const Member<TextSuggestionController> text_suggestion_controller_;
int navigation_disable_count_;
@@ -360,6 +363,11 @@ inline InputMethodController& LocalFrame::GetInputMethodController() const {
return *input_method_controller_;
}
+inline TextSuggestionController& LocalFrame::GetTextSuggestionController()
+ const {
+ return *text_suggestion_controller_;
+}
+
inline bool LocalFrame::InViewSourceMode() const {
return in_view_source_mode_;
}

Powered by Google App Engine
This is Rietveld 408576698