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

Unified Diff: remoting/protocol/connection_to_client_unittest.cc

Issue 9114020: Remove task.h and finish base::Bind() migration. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix typo 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 | « remoting/protocol/client_control_dispatcher.cc ('k') | remoting/protocol/connection_to_host.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/protocol/connection_to_client_unittest.cc
diff --git a/remoting/protocol/connection_to_client_unittest.cc b/remoting/protocol/connection_to_client_unittest.cc
index 83cf225c2eebae9b998ff658d808f8af7786c64f..0d27fee6fda715223ca1033ee6348765a888de12 100644
--- a/remoting/protocol/connection_to_client_unittest.cc
+++ b/remoting/protocol/connection_to_client_unittest.cc
@@ -64,7 +64,7 @@ TEST_F(ConnectionToClientTest, SendUpdateStream) {
// Then send the actual data.
VideoPacket* packet = new VideoPacket();
viewer_->video_stub()->ProcessVideoPacket(
- packet, base::Bind(&DeletePointer<VideoPacket>, packet));
+ packet, base::Bind(&base::DeletePointer<VideoPacket>, packet));
message_loop_.RunAllPending();
@@ -84,7 +84,7 @@ TEST_F(ConnectionToClientTest, NoWriteAfterDisconnect) {
// Then send the actual data.
VideoPacket* packet = new VideoPacket();
viewer_->video_stub()->ProcessVideoPacket(
- packet, base::Bind(&DeletePointer<VideoPacket>, packet));
+ packet, base::Bind(&base::DeletePointer<VideoPacket>, packet));
// And then close the connection to ConnectionToClient.
viewer_->Disconnect();
« no previous file with comments | « remoting/protocol/client_control_dispatcher.cc ('k') | remoting/protocol/connection_to_host.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698