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

Unified Diff: remoting/protocol/message_reader_unittest.cc

Issue 1654513003: Simplify message parsing. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@no_done
Patch Set: Created 4 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/message_reader.cc ('k') | remoting/protocol/message_serialization.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/protocol/message_reader_unittest.cc
diff --git a/remoting/protocol/message_reader_unittest.cc b/remoting/protocol/message_reader_unittest.cc
index 2361cb6e6a53966767a694fd0af0db540aecd498..874fd71c6046644b24f2e3722edd4327f2ddb5d8 100644
--- a/remoting/protocol/message_reader_unittest.cc
+++ b/remoting/protocol/message_reader_unittest.cc
@@ -53,10 +53,10 @@ class MessageReaderTest : public testing::Test {
void TearDown() override { STLDeleteElements(&messages_); }
void InitReader() {
- reader_->SetMessageReceivedCallback(
- base::Bind(&MessageReaderTest::OnMessage, base::Unretained(this)));
- reader_->StartReading(&socket_, base::Bind(&MessageReaderTest::OnReadError,
- base::Unretained(this)));
+ reader_->StartReading(
+ &socket_,
+ base::Bind(&MessageReaderTest::OnMessage, base::Unretained(this)),
+ base::Bind(&MessageReaderTest::OnReadError, base::Unretained(this)));
}
void AddMessage(const std::string& message) {
« no previous file with comments | « remoting/protocol/message_reader.cc ('k') | remoting/protocol/message_serialization.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698