OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "chrome/renderer/spellchecker/spellcheck_provider_test.h" | 5 #include "chrome/renderer/spellchecker/spellcheck_provider_test.h" |
6 | 6 |
7 #include "base/stl_util.h" | 7 #include "base/stl_util.h" |
8 #include "chrome/common/spellcheck_marker.h" | |
9 #include "chrome/common/spellcheck_messages.h" | |
10 #include "chrome/renderer/spellchecker/spellcheck.h" | 8 #include "chrome/renderer/spellchecker/spellcheck.h" |
| 9 #include "components/spellcheck/common/spellcheck_marker.h" |
| 10 #include "components/spellcheck/common/spellcheck_messages.h" |
11 #include "ipc/ipc_message_macros.h" | 11 #include "ipc/ipc_message_macros.h" |
12 | 12 |
13 class MockSpellcheck: public SpellCheck { | 13 class MockSpellcheck: public SpellCheck { |
14 }; | 14 }; |
15 | 15 |
16 FakeTextCheckingCompletion::FakeTextCheckingCompletion() | 16 FakeTextCheckingCompletion::FakeTextCheckingCompletion() |
17 : completion_count_(0), | 17 : completion_count_(0), |
18 cancellation_count_(0) { | 18 cancellation_count_(0) { |
19 } | 19 } |
20 | 20 |
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
92 } | 92 } |
93 | 93 |
94 void TestingSpellCheckProvider::ResetResult() { | 94 void TestingSpellCheckProvider::ResetResult() { |
95 text_.clear(); | 95 text_.clear(); |
96 } | 96 } |
97 | 97 |
98 SpellCheckProviderTest::SpellCheckProviderTest() {} | 98 SpellCheckProviderTest::SpellCheckProviderTest() {} |
99 SpellCheckProviderTest::~SpellCheckProviderTest() {} | 99 SpellCheckProviderTest::~SpellCheckProviderTest() {} |
100 | 100 |
101 | 101 |
OLD | NEW |