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

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

Issue 2671263003: Merge 3004: Revert of Remove ScopedVector in components/spellcheck (patchset #5 id:80001 of https:/… (Closed)
Patch Set: 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.cc
diff --git a/components/spellcheck/renderer/spellcheck_provider_test.cc b/components/spellcheck/renderer/spellcheck_provider_test.cc
index c8b27ee3ca05b197e92cc80f51037c4e0c6a1d7c..9f86045a0a72236d537b9a3a64f836d5912ef7d8 100644
--- a/components/spellcheck/renderer/spellcheck_provider_test.cc
+++ b/components/spellcheck/renderer/spellcheck_provider_test.cc
@@ -4,7 +4,6 @@
#include "components/spellcheck/renderer/spellcheck_provider_test.h"
-#include "base/memory/ptr_util.h"
#include "base/stl_util.h"
#include "components/spellcheck/common/spellcheck_marker.h"
#include "components/spellcheck/common/spellcheck_messages.h"
@@ -63,7 +62,7 @@ bool TestingSpellCheckProvider::Send(IPC::Message* message) {
}
#endif
- messages_.push_back(base::WrapUnique<IPC::Message>(message));
+ messages_.push_back(message);
return true;
}
« no previous file with comments | « components/spellcheck/renderer/spellcheck_provider_test.h ('k') | components/spellcheck/renderer/spellcheck_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698