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

Unified Diff: blimp/net/compressed_packet_reader.cc

Issue 1962393004: Added a debug info UI for Blimp (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Refactored menu into ToolbarMenu 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/compressed_packet_reader.cc
diff --git a/blimp/net/compressed_packet_reader.cc b/blimp/net/compressed_packet_reader.cc
index 92a3b9ae9dbae5985ae754130c1082c963e539a0..47cf0e8d44a9358475d82b51fc434fcb3c0abdfc 100644
--- a/blimp/net/compressed_packet_reader.cc
+++ b/blimp/net/compressed_packet_reader.cc
@@ -93,6 +93,9 @@ int CompressedPacketReader::DecompressPacket(
return net::ERR_FILE_TOO_BIG;
}
+ if (connection_details_) {
+ connection_details_->OnPacketReceived(size);
+ }
return decompressed_size;
}

Powered by Google App Engine
This is Rietveld 408576698