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

Unified Diff: blimp/net/blimp_message_pump.h

Issue 1962393004: Added a debug info UI for Blimp (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Changed implementation to receive synchronous calls Created 4 years, 7 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.h
diff --git a/blimp/net/blimp_message_pump.h b/blimp/net/blimp_message_pump.h
index 199ca51cd4346ca9f38ebae40b0c6cd6543c31db..2fa5cb38ee1326a57c264f0bf9d016b2e297f14c 100644
--- a/blimp/net/blimp_message_pump.h
+++ b/blimp/net/blimp_message_pump.h
@@ -10,7 +10,9 @@
#include "base/macros.h"
#include "base/memory/ref_counted.h"
#include "base/memory/weak_ptr.h"
+#include "blimp/net/blimp_connection_statistics.h"
Kevin M 2016/05/24 01:02:01 Add a prototype instead of an include in .h
shaktisahu 2016/05/24 21:02:45 Done.
#include "blimp/net/blimp_net_export.h"
+#include "blimp/net/packet_reader.h"
Kevin M 2016/05/24 01:02:01 Not used? We have a prototype on line 26.
shaktisahu 2016/05/24 21:02:45 Done.
#include "net/base/completion_callback.h"
namespace net {
@@ -44,6 +46,8 @@ class BLIMP_NET_EXPORT BlimpMessagePump {
error_observer_ = observer;
}
+ void SetBlimpConnectionStatistics(BlimpConnectionStatistics* statistics);
Kevin M 2016/05/24 01:02:01 Add comment
shaktisahu 2016/05/24 21:02:45 Removed function since we are passing in construct
+
private:
// Read next packet from |reader_|.
void ReadNextPacket();

Powered by Google App Engine
This is Rietveld 408576698