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

Unified Diff: net/socket_stream/socket_stream_unittest.cc

Issue 9251019: Fixes to socket_test_util.cc. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Renamed blocked_ -> read_in_progress_. Created 8 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 | « net/socket/socket_test_util.cc ('k') | net/spdy/spdy_http_stream_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/socket_stream/socket_stream_unittest.cc
diff --git a/net/socket_stream/socket_stream_unittest.cc b/net/socket_stream/socket_stream_unittest.cc
index 69166a370c54bc5c38f027e35ebbded07717b269..3bfe20f323150e439dd1ae899bb6f849add741e1 100644
--- a/net/socket_stream/socket_stream_unittest.cc
+++ b/net/socket_stream/socket_stream_unittest.cc
@@ -299,7 +299,7 @@ TEST_F(SocketStreamTest, CloseFlushPendingWrite) {
AddWebSocketMessage("message1");
AddWebSocketMessage("message2");
- scoped_refptr<DelayedSocketData> data_provider(
+ scoped_ptr<DelayedSocketData> data_provider(
new DelayedSocketData(1,
data_reads, arraysize(data_reads),
data_writes, arraysize(data_writes)));
@@ -436,7 +436,7 @@ TEST_F(SocketStreamTest, IOPending) {
AddWebSocketMessage("message1");
AddWebSocketMessage("message2");
- scoped_refptr<DelayedSocketData> data_provider(
+ scoped_ptr<DelayedSocketData> data_provider(
new DelayedSocketData(1,
data_reads, arraysize(data_reads),
data_writes, arraysize(data_writes)));
« no previous file with comments | « net/socket/socket_test_util.cc ('k') | net/spdy/spdy_http_stream_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698