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

Unified Diff: third_party/WebKit/Source/core/inspector/InspectorTraceEvents.cpp

Issue 2519893002: Stop dispatching encoded-data-length on each data chunk arrival (Closed)
Patch Set: fix Created 4 years, 1 month 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/core/inspector/InspectorTraceEvents.cpp
diff --git a/third_party/WebKit/Source/core/inspector/InspectorTraceEvents.cpp b/third_party/WebKit/Source/core/inspector/InspectorTraceEvents.cpp
index e944c3a1a4dc7017d9ef8da7eac6330f759932d5..c60bc726bb1cab3011d67852f0e1c65d27ac0b50 100644
--- a/third_party/WebKit/Source/core/inspector/InspectorTraceEvents.cpp
+++ b/third_party/WebKit/Source/core/inspector/InspectorTraceEvents.cpp
@@ -565,14 +565,12 @@ std::unique_ptr<TracedValue> InspectorReceiveResponseEvent::data(
std::unique_ptr<TracedValue> InspectorReceiveDataEvent::data(
unsigned long identifier,
- LocalFrame* frame,
- int encodedDataLength) {
+ LocalFrame* frame) {
String requestId = IdentifiersFactory::requestId(identifier);
std::unique_ptr<TracedValue> value = TracedValue::create();
value->setString("requestId", requestId);
value->setString("frame", toHexString(frame));
- value->setInteger("encodedDataLength", encodedDataLength);
return value;
}

Powered by Google App Engine
This is Rietveld 408576698