Index: third_party/WebKit/Source/core/frame/LocalFrame.cpp |
diff --git a/third_party/WebKit/Source/core/frame/LocalFrame.cpp b/third_party/WebKit/Source/core/frame/LocalFrame.cpp |
index 4f1b795f86034cf4ae312fe7ad9580343b3f3fd2..bf26d53839fc5cee93939edc8f1c87fcf8d66ad1 100644 |
--- a/third_party/WebKit/Source/core/frame/LocalFrame.cpp |
+++ b/third_party/WebKit/Source/core/frame/LocalFrame.cpp |
@@ -41,6 +41,7 @@ |
#include "core/editing/Editor.h" |
#include "core/editing/FrameSelection.h" |
#include "core/editing/InputMethodController.h" |
+#include "core/editing/TextSuggestionController.h" |
#include "core/editing/serializers/Serialization.h" |
#include "core/editing/spellcheck/SpellChecker.h" |
#include "core/events/Event.h" |
@@ -370,6 +371,7 @@ DEFINE_TRACE(LocalFrame) { |
visitor->Trace(event_handler_); |
visitor->Trace(console_); |
visitor->Trace(input_method_controller_); |
+ visitor->Trace(text_suggestion_controller_); |
Frame::Trace(visitor); |
Supplementable<LocalFrame>::Trace(visitor); |
} |
@@ -902,6 +904,7 @@ inline LocalFrame::LocalFrame(LocalFrameClient* client, |
event_handler_(new EventHandler(*this)), |
console_(FrameConsole::Create(*this)), |
input_method_controller_(InputMethodController::Create(*this)), |
+ text_suggestion_controller_(new TextSuggestionController(*this)), |
navigation_disable_count_(0), |
page_zoom_factor_(ParentPageZoomFactor(this)), |
text_zoom_factor_(ParentTextZoomFactor(this)), |