| 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 3e44f167353c80c8c712612dea2c9eb4f7ce956d..cc2881d9d89495f937f9ed562c8a141cfb8efb59 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"
|
| @@ -365,6 +366,7 @@ DEFINE_TRACE(LocalFrame) {
|
| visitor->trace(m_eventHandler);
|
| visitor->trace(m_console);
|
| visitor->trace(m_inputMethodController);
|
| + visitor->trace(m_textSuggestionController);
|
| Frame::trace(visitor);
|
| Supplementable<LocalFrame>::trace(visitor);
|
| }
|
| @@ -877,6 +879,7 @@ inline LocalFrame::LocalFrame(LocalFrameClient* client,
|
| m_eventHandler(new EventHandler(*this)),
|
| m_console(FrameConsole::create(*this)),
|
| m_inputMethodController(InputMethodController::create(*this)),
|
| + m_textSuggestionController(TextSuggestionController::create(*this)),
|
| m_navigationDisableCount(0),
|
| m_pageZoomFactor(parentPageZoomFactor(this)),
|
| m_textZoomFactor(parentTextZoomFactor(this)),
|
|
|