| 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 #ifndef CHROME_RENDERER_SPELLCHECKER_SPELLCHECK_PROVIDER_TEST_H_ | 5 #ifndef CHROME_RENDERER_SPELLCHECKER_SPELLCHECK_PROVIDER_TEST_H_ |
| 6 #define CHROME_RENDERER_SPELLCHECKER_SPELLCHECK_PROVIDER_TEST_H_ | 6 #define CHROME_RENDERER_SPELLCHECKER_SPELLCHECK_PROVIDER_TEST_H_ |
| 7 | 7 |
| 8 #include <vector> | 8 #include <vector> |
| 9 | 9 |
| 10 #include "base/memory/scoped_vector.h" | 10 #include "base/memory/scoped_vector.h" |
| 11 #include "base/string16.h" | 11 #include "base/string16.h" |
| 12 #include "chrome/renderer/spellchecker/spellcheck_provider.h" | 12 #include "chrome/renderer/spellchecker/spellcheck_provider.h" |
| 13 #include "testing/gtest/include/gtest/gtest.h" | 13 #include "testing/gtest/include/gtest/gtest.h" |
| 14 #include "third_party/WebKit/Source/Platform/chromium/public/WebVector.h" | 14 #include "third_party/WebKit/public/platform/WebVector.h" |
| 15 #include "third_party/WebKit/Source/WebKit/chromium/public/WebTextCheckingComple
tion.h" | 15 #include "third_party/WebKit/Source/WebKit/chromium/public/WebTextCheckingComple
tion.h" |
| 16 #include "third_party/WebKit/Source/WebKit/chromium/public/WebTextCheckingResult
.h" | 16 #include "third_party/WebKit/Source/WebKit/chromium/public/WebTextCheckingResult
.h" |
| 17 | 17 |
| 18 namespace IPC { | 18 namespace IPC { |
| 19 class Message; | 19 class Message; |
| 20 } | 20 } |
| 21 | 21 |
| 22 // A fake completion object for verification. | 22 // A fake completion object for verification. |
| 23 class FakeTextCheckingCompletion : public WebKit::WebTextCheckingCompletion { | 23 class FakeTextCheckingCompletion : public WebKit::WebTextCheckingCompletion { |
| 24 public: | 24 public: |
| (...skipping 30 matching lines...) Expand all Loading... |
| 55 class SpellCheckProviderTest : public testing::Test { | 55 class SpellCheckProviderTest : public testing::Test { |
| 56 public: | 56 public: |
| 57 SpellCheckProviderTest(); | 57 SpellCheckProviderTest(); |
| 58 virtual ~SpellCheckProviderTest(); | 58 virtual ~SpellCheckProviderTest(); |
| 59 | 59 |
| 60 protected: | 60 protected: |
| 61 TestingSpellCheckProvider provider_; | 61 TestingSpellCheckProvider provider_; |
| 62 }; | 62 }; |
| 63 | 63 |
| 64 #endif // CHROME_RENDERER_SPELLCHECKER_SPELLCHECK_PROVIDER_TEST_H_ | 64 #endif // CHROME_RENDERER_SPELLCHECKER_SPELLCHECK_PROVIDER_TEST_H_ |
| OLD | NEW |