| Index: third_party/WebKit/Source/web/WebViewImpl.h
|
| diff --git a/third_party/WebKit/Source/web/WebViewImpl.h b/third_party/WebKit/Source/web/WebViewImpl.h
|
| index ad2f40941cd8816c7a03a0ebab52b0a4f2c70fe3..80aa73e03a0cac013422439821ca7fa6d9f3d1e9 100644
|
| --- a/third_party/WebKit/Source/web/WebViewImpl.h
|
| +++ b/third_party/WebKit/Source/web/WebViewImpl.h
|
| @@ -31,6 +31,7 @@
|
| #ifndef WebViewImpl_h
|
| #define WebViewImpl_h
|
|
|
| +#include <memory>
|
| #include "core/page/ContextMenuProvider.h"
|
| #include "core/page/EventWithHitTestResults.h"
|
| #include "platform/animation/CompositorAnimationTimeline.h"
|
| @@ -62,12 +63,12 @@
|
| #include "web/ResizeViewportAnchor.h"
|
| #include "web/SpellCheckerClientImpl.h"
|
| #include "web/StorageClientImpl.h"
|
| +#include "web/TextCheckerClientImpl.h"
|
| #include "web/WebExport.h"
|
| #include "wtf/Compiler.h"
|
| #include "wtf/HashSet.h"
|
| #include "wtf/RefCounted.h"
|
| #include "wtf/Vector.h"
|
| -#include <memory>
|
|
|
| namespace blink {
|
|
|
| @@ -611,6 +612,7 @@ class WEB_EXPORT WebViewImpl final
|
| Persistent<ChromeClientImpl> m_chromeClientImpl;
|
| ContextMenuClientImpl m_contextMenuClientImpl;
|
| EditorClientImpl m_editorClientImpl;
|
| + TextCheckerClientImpl m_textCheckerClientImpl;
|
| SpellCheckerClientImpl m_spellCheckerClientImpl;
|
| StorageClientImpl m_storageClientImpl;
|
|
|
|
|