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

Unified Diff: remoting/signaling/xmpp_signal_strategy_unittest.cc

Issue 2627433003: Remove ScopedVector from remoting/. (Closed)
Patch Set: rev 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
« no previous file with comments | « remoting/protocol/webrtc_transport.cc ('k') | remoting/signaling/xmpp_stream_parser_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/signaling/xmpp_signal_strategy_unittest.cc
diff --git a/remoting/signaling/xmpp_signal_strategy_unittest.cc b/remoting/signaling/xmpp_signal_strategy_unittest.cc
index 53147bc6fa4297dec226a3c721d5689ca89a1cd6..99d8f84d59caa9f9c87f32d153240fada1cc32b4 100644
--- a/remoting/signaling/xmpp_signal_strategy_unittest.cc
+++ b/remoting/signaling/xmpp_signal_strategy_unittest.cc
@@ -4,7 +4,9 @@
#include "remoting/signaling/xmpp_signal_strategy.h"
+#include <memory>
#include <utility>
+#include <vector>
#include "base/base64.h"
#include "base/memory/ptr_util.h"
@@ -160,7 +162,7 @@ class XmppSignalStrategyTest : public testing::Test,
std::unique_ptr<XmppSignalStrategy> signal_strategy_;
std::vector<SignalStrategy::State> state_history_;
- ScopedVector<buzz::XmlElement> received_messages_;
+ std::vector<std::unique_ptr<buzz::XmlElement>> received_messages_;
};
void XmppSignalStrategyTest::Connect(bool success) {
« no previous file with comments | « remoting/protocol/webrtc_transport.cc ('k') | remoting/signaling/xmpp_stream_parser_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698