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

Unified Diff: content/child/resource_dispatcher.h

Issue 2092993002: Browser process changes for Resource Timing sizes. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Stop using AllocateForTesting() Created 4 years, 5 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: content/child/resource_dispatcher.h
diff --git a/content/child/resource_dispatcher.h b/content/child/resource_dispatcher.h
index 11062c6fe4b114dc5055a5e0778b4f9fc88e9bc8..8a56030e7e68dbc3931c19b9675bb681372c400f 100644
--- a/content/child/resource_dispatcher.h
+++ b/content/child/resource_dispatcher.h
@@ -178,11 +178,13 @@ class CONTENT_EXPORT ResourceDispatcher : public IPC::Listener {
base::ProcessId renderer_pid);
void OnReceivedInlinedDataChunk(int request_id,
const std::vector<char>& data,
- int encoded_data_length);
+ int encoded_data_length,
+ int encoded_body_length);
void OnReceivedData(int request_id,
int data_offset,
int data_length,
- int encoded_data_length);
+ int encoded_data_length,
+ int encoded_body_length);
void OnDownloadedData(int request_id, int data_len, int encoded_data_length);
void OnRequestComplete(
int request_id,

Powered by Google App Engine
This is Rietveld 408576698