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

Unified Diff: blimp/net/null_blimp_message_processor.cc

Issue 1551583003: Implementation and fixes for Blimp client/engine E2E communication. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@dtrainor-linux-cl1528243002
Patch Set: Fixed misplaced EXPORT directive Created 4 years, 12 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 | « blimp/net/engine_authentication_handler_unittest.cc ('k') | blimp/net/stream_packet_reader.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: blimp/net/null_blimp_message_processor.cc
diff --git a/blimp/net/null_blimp_message_processor.cc b/blimp/net/null_blimp_message_processor.cc
index 4ae26a3dba252184d4ec4f33b319322c4a7dc8b7..3b335ac0d85f22bc03e2e7de83ba073582d8f9ac 100644
--- a/blimp/net/null_blimp_message_processor.cc
+++ b/blimp/net/null_blimp_message_processor.cc
@@ -4,6 +4,8 @@
#include "blimp/net/null_blimp_message_processor.h"
+#include "blimp/net/common.h"
+
namespace blimp {
NullBlimpMessageProcessor::~NullBlimpMessageProcessor() {}
@@ -11,6 +13,7 @@ NullBlimpMessageProcessor::~NullBlimpMessageProcessor() {}
void NullBlimpMessageProcessor::ProcessMessage(
scoped_ptr<BlimpMessage> message,
const net::CompletionCallback& callback) {
+ DVLOG(2) << "Dropped message: " << *message;
if (!callback.is_null())
callback.Run(net::OK);
}
« no previous file with comments | « blimp/net/engine_authentication_handler_unittest.cc ('k') | blimp/net/stream_packet_reader.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698