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

Unified Diff: net/spdy/spdy_stream_test_util.cc

Issue 2229393003: net: Use stl utilities from the base namespace (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased Created 4 years, 4 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 | « net/spdy/spdy_session_pool.cc ('k') | net/spdy/spdy_write_queue.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/spdy/spdy_stream_test_util.cc
diff --git a/net/spdy/spdy_stream_test_util.cc b/net/spdy/spdy_stream_test_util.cc
index cbc53c2db4c51c46e66460723c70c4a871615ebf..9b250b2f074d7e15905262c958bfe69fca7237d1 100644
--- a/net/spdy/spdy_stream_test_util.cc
+++ b/net/spdy/spdy_stream_test_util.cc
@@ -92,9 +92,8 @@ std::string StreamDelegateBase::TakeReceivedData() {
size_t len = received_data_queue_.GetTotalSize();
std::string received_data(len, '\0');
if (len > 0) {
- EXPECT_EQ(
- len,
- received_data_queue_.Dequeue(string_as_array(&received_data), len));
+ EXPECT_EQ(len, received_data_queue_.Dequeue(
+ base::string_as_array(&received_data), len));
}
return received_data;
}
« no previous file with comments | « net/spdy/spdy_session_pool.cc ('k') | net/spdy/spdy_write_queue.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698