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

Unified Diff: blimp/net/blimp_message_pump.cc

Issue 1575493004: Blimp: add some hard-coded actions on client startup. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
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
Index: blimp/net/blimp_message_pump.cc
diff --git a/blimp/net/blimp_message_pump.cc b/blimp/net/blimp_message_pump.cc
index ae264e1fd8948d68b44bfdab021b7ef6f8e27f46..d773f5e94d5fd544b6417193f050d29c1c21fd56 100644
--- a/blimp/net/blimp_message_pump.cc
+++ b/blimp/net/blimp_message_pump.cc
@@ -59,6 +59,7 @@ void BlimpMessagePump::OnReadPacketComplete(int result) {
if (result == net::OK) {
scoped_ptr<BlimpMessage> message(new BlimpMessage);
if (message->ParseFromArray(buffer_->StartOfBuffer(), buffer_->offset())) {
+ DVLOG(2) << "Parsed message: " << *message;
processor_->ProcessMessage(std::move(message),
process_msg_callback_.callback());
} else {

Powered by Google App Engine
This is Rietveld 408576698