Index: Source/core/inspector/InspectorResourceAgent.cpp |
diff --git a/Source/core/inspector/InspectorResourceAgent.cpp b/Source/core/inspector/InspectorResourceAgent.cpp |
index fad8d679ef7917c242a1f7e2e8dd53a9cfe4a852..c8c61430e04952de9cfb51d911c06fba93482b52 100644 |
--- a/Source/core/inspector/InspectorResourceAgent.cpp |
+++ b/Source/core/inspector/InspectorResourceAgent.cpp |
@@ -384,6 +384,12 @@ void InspectorResourceAgent::didReceiveData(unsigned long identifier, const char |
m_frontend->dataReceived(requestId, currentTime(), dataLength, encodedDataLength); |
} |
+void InspectorResourceAgent::didReceiveDataWithoutData(unsigned long identifier, int dataLength, int encodedDataLength) |
+{ |
+ String requestId = IdentifiersFactory::requestId(identifier); |
+ m_frontend->dataReceived(requestId, currentTime(), dataLength, encodedDataLength); |
+} |
+ |
void InspectorResourceAgent::didFinishLoading(unsigned long identifier, DocumentLoader* loader, double monotonicFinishTime) |
{ |
double finishTime = 0.0; |