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 40ff1c25f2a91fdc420b688cabfa8a7bbcd3a744..0fc96789176cbf3536bde77bd866c3114a0d5344 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_; |
} |