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

Unified Diff: components/offline_pages/core/background/offliner.h

Issue 2857063002: Add a way to send the resource percentage signal to the RC. (Closed)
Patch Set: CR feedback, fix unit test. Created 3 years, 7 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: components/offline_pages/core/background/offliner.h
diff --git a/components/offline_pages/core/background/offliner.h b/components/offline_pages/core/background/offliner.h
index aae5fd9c780027f83747b3abce68c566d5c2353c..72faff465f54be1a83dad3e9389515b10a154982 100644
--- a/components/offline_pages/core/background/offliner.h
+++ b/components/offline_pages/core/background/offliner.h
@@ -8,6 +8,7 @@
#include <string>
#include "base/callback.h"
+#include "components/offline_pages/core/background/resource_data_type.h"
namespace offline_pages {
@@ -93,6 +94,12 @@ class Offliner {
// offlining will be provided by |completion_callback|.
virtual bool HandleTimeout(int64_t request_id) = 0;
+ // We are notified of a resource load starting or ending, we can use this
+ // for tracking loading signals.
+ virtual void ObserveResourceTracking(const ResourceDataType type,
+ int64_t started_count,
+ int64_t completed_count) = 0;
+
// TODO(dougarnett): add policy support methods.
};

Powered by Google App Engine
This is Rietveld 408576698