Chromium Code Reviews| 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(); |