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

Unified Diff: remoting/signaling/xmpp_stream_parser_unittest.cc

Issue 2627433003: Remove ScopedVector from remoting/. (Closed)
Patch Set: Created 3 years, 11 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: remoting/signaling/xmpp_stream_parser_unittest.cc
diff --git a/remoting/signaling/xmpp_stream_parser_unittest.cc b/remoting/signaling/xmpp_stream_parser_unittest.cc
index 299d9f7312f4de2bc14f5de4be1145bfdcc84536..22e341f9242d04fb8dcb9ef7d4b2ccad758cde50 100644
--- a/remoting/signaling/xmpp_stream_parser_unittest.cc
+++ b/remoting/signaling/xmpp_stream_parser_unittest.cc
@@ -4,10 +4,11 @@
#include "remoting/signaling/xmpp_stream_parser.h"
+#include <memory>
#include <utility>
+#include <vector>
#include "base/bind.h"
-#include "base/memory/scoped_vector.h"
#include "base/message_loop/message_loop.h"
#include "base/run_loop.h"
#include "testing/gtest/include/gtest/gtest.h"
@@ -43,7 +44,7 @@ class XmppStreamParserTest : public testing::Test {
base::MessageLoop message_loop_;
std::unique_ptr<XmppStreamParser> parser_;
- ScopedVector<buzz::XmlElement> received_stanzas_;
+ std::vector<std::unique_ptr<buzz::XmlElement>> received_stanzas_;
bool error_;
};

Powered by Google App Engine
This is Rietveld 408576698