| Index: chrome/renderer/spellchecker/spellcheck_provider.cc
|
| diff --git a/chrome/renderer/spellchecker/spellcheck_provider.cc b/chrome/renderer/spellchecker/spellcheck_provider.cc
|
| index 576460e8dbe025b12abf2170c26ccb7e76a7883e..95573e0da346b42dc116458b4fb8988a2fac724d 100644
|
| --- a/chrome/renderer/spellchecker/spellcheck_provider.cc
|
| +++ b/chrome/renderer/spellchecker/spellcheck_provider.cc
|
| @@ -7,11 +7,11 @@
|
| #include "base/command_line.h"
|
| #include "base/metrics/histogram.h"
|
| #include "chrome/common/chrome_switches.h"
|
| -#include "chrome/common/spellcheck_marker.h"
|
| -#include "chrome/common/spellcheck_messages.h"
|
| -#include "chrome/common/spellcheck_result.h"
|
| #include "chrome/renderer/spellchecker/spellcheck.h"
|
| #include "chrome/renderer/spellchecker/spellcheck_language.h"
|
| +#include "components/spellcheck/common/spellcheck_marker.h"
|
| +#include "components/spellcheck/common/spellcheck_messages.h"
|
| +#include "components/spellcheck/common/spellcheck_result.h"
|
| #include "content/public/renderer/render_view.h"
|
| #include "third_party/WebKit/public/platform/WebVector.h"
|
| #include "third_party/WebKit/public/web/WebDocument.h"
|
| @@ -29,6 +29,8 @@ using blink::WebTextCheckingCompletion;
|
| using blink::WebTextCheckingResult;
|
| using blink::WebTextDecorationType;
|
| using blink::WebVector;
|
| +using spellcheck::SpellCheckMarker;
|
| +using spellcheck::SpellCheckResult;
|
|
|
| static_assert(int(blink::WebTextDecorationTypeSpelling) ==
|
| int(SpellCheckResult::SPELLING), "mismatching enums");
|
|
|