| Index: components/spellcheck/renderer/spellcheck_provider_test.h
|
| diff --git a/components/spellcheck/renderer/spellcheck_provider_test.h b/components/spellcheck/renderer/spellcheck_provider_test.h
|
| index 8d8b6fc9b6d68353ae93a488c1fa5df6aacdb7ff..9cb2a76577fda1b13149e379c3e4a081b09e4d22 100644
|
| --- a/components/spellcheck/renderer/spellcheck_provider_test.h
|
| +++ b/components/spellcheck/renderer/spellcheck_provider_test.h
|
| @@ -9,7 +9,6 @@
|
|
|
| #include <vector>
|
|
|
| -#include "base/memory/scoped_vector.h"
|
| #include "base/strings/string16.h"
|
| #include "components/spellcheck/renderer/spellcheck_provider.h"
|
| #include "testing/gtest/include/gtest/gtest.h"
|
| @@ -57,7 +56,7 @@ class TestingSpellCheckProvider : public SpellCheckProvider {
|
| blink::WebTextCheckingCompletion* completion);
|
|
|
| base::string16 text_;
|
| - ScopedVector<IPC::Message> messages_;
|
| + std::vector<std::unique_ptr<IPC::Message>> messages_;
|
| size_t spelling_service_call_count_;
|
| };
|
|
|
|
|