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

Unified Diff: content/common/url_loader.mojom

Issue 2574143003: Implement upload progress handling in Mojo loading (Closed)
Patch Set: update TestExpectations Created 4 years 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/common/url_loader.mojom
diff --git a/content/common/url_loader.mojom b/content/common/url_loader.mojom
index f77988b238bd2d74a1d6a29e8b682de11ce9bec8..48d78cd1ced16a9194be8b3f3b97554b8450e167 100644
--- a/content/common/url_loader.mojom
+++ b/content/common/url_loader.mojom
@@ -46,6 +46,8 @@ interface URLLoaderClient {
// OnStartLoadingResponseBody in the call sequence in that case.
OnDataDownloaded(int64 data_length, int64 encoded_length);
+ OnUploadProgress(int64 current_position, int64 total_size) => ();
+
// Called when the loader starts loading response body.
OnStartLoadingResponseBody(handle<data_pipe_consumer> body);

Powered by Google App Engine
This is Rietveld 408576698