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

Unified Diff: third_party/WebKit/Source/platform/instrumentation/inspector/PlatformInspectorTraceEvents.h

Issue 2712833002: DevTools: Show decoded body length for network requests on timeline. (Closed)
Patch Set: Created 3 years, 10 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: third_party/WebKit/Source/platform/instrumentation/inspector/PlatformInspectorTraceEvents.h
diff --git a/third_party/WebKit/Source/platform/instrumentation/inspector/PlatformInspectorTraceEvents.h b/third_party/WebKit/Source/platform/instrumentation/inspector/PlatformInspectorTraceEvents.h
index 7d94a8585779ec48b78a329342fdafec3de39024..8deafc91412bc452425826fc5ee52cdc71ce4897 100644
--- a/third_party/WebKit/Source/platform/instrumentation/inspector/PlatformInspectorTraceEvents.h
+++ b/third_party/WebKit/Source/platform/instrumentation/inspector/PlatformInspectorTraceEvents.h
@@ -11,6 +11,7 @@
#include "wtf/Forward.h"
namespace blink {
+
class ResourceResponse;
namespace InspectorReceiveResponseEvent {
@@ -27,7 +28,8 @@ namespace InspectorResourceFinishEvent {
PLATFORM_EXPORT std::unique_ptr<TracedValue> data(unsigned long identifier,
double finishTime,
bool didFail,
- int64_t encodedDataLength);
+ int64_t encodedDataLength,
+ int64_t decodedBodyLength);
}
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698