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 f64499cace3090cb8a1f0c2b51782436600182e2..fea16fbb8e557a7eb6d5fa0704cfea8b757d107e 100644 |
--- a/third_party/WebKit/Source/core/frame/LocalFrame.cpp |
+++ b/third_party/WebKit/Source/core/frame/LocalFrame.cpp |
@@ -43,6 +43,7 @@ |
#include "core/editing/InputMethodController.h" |
#include "core/editing/serializers/Serialization.h" |
#include "core/editing/spellcheck/SpellChecker.h" |
+#include "core/editing/suggestion/TextSuggestionController.h" |
#include "core/events/Event.h" |
#include "core/frame/ContentSettingsClient.h" |
#include "core/frame/EventHandlerRegistry.h" |
@@ -386,6 +387,7 @@ DEFINE_TRACE(LocalFrame) { |
visitor->Trace(console_); |
visitor->Trace(input_method_controller_); |
visitor->Trace(frame_resource_coordinator_); |
+ visitor->Trace(text_suggestion_controller_); |
Frame::Trace(visitor); |
Supplementable<LocalFrame>::Trace(visitor); |
} |
@@ -548,6 +550,7 @@ void LocalFrame::DocumentAttached() { |
Selection().DocumentAttached(GetDocument()); |
GetInputMethodController().DocumentAttached(GetDocument()); |
GetSpellChecker().DocumentAttached(GetDocument()); |
+ GetTextSuggestionController().DocumentAttached(GetDocument()); |
if (IsMainFrame()) |
has_received_user_gesture_ = false; |
} |
@@ -936,6 +939,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)), |