Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(686)

Unified Diff: components/spellcheck/renderer/spellcheck_provider_test.h

Issue 2658013002: Remove ScopedVector in components/spellcheck (Closed)
Patch Set: code rebase Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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_;
};

Powered by Google App Engine
This is Rietveld 408576698