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

Unified Diff: components/ntp_snippets/remote/remote_suggestions_scheduler.h

Issue 2597653002: [Remote suggestions] Interface for additional triggers for the scheduler (Closed)
Patch Set: 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
« no previous file with comments | « no previous file | components/ntp_snippets/remote/scheduling_remote_suggestions_provider.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/ntp_snippets/remote/remote_suggestions_scheduler.h
diff --git a/components/ntp_snippets/remote/remote_suggestions_scheduler.h b/components/ntp_snippets/remote/remote_suggestions_scheduler.h
index be4c215e89b4445cd52b60b76283f7b4ed6137c4..4f61ea65c46f0cd5ea850da9a535e311ea3ae831 100644
--- a/components/ntp_snippets/remote/remote_suggestions_scheduler.h
+++ b/components/ntp_snippets/remote/remote_suggestions_scheduler.h
@@ -12,6 +12,11 @@ namespace ntp_snippets {
// Interface for informing the scheduler.
class RemoteSuggestionsScheduler {
public:
+ // External triggers to consider fetching content suggestions. Returns whether
+ // a fetch will actually be triggered.
+ virtual bool OnBrowserStartup() = 0;
tschumann 2016/12/21 14:27:37 is the return value actually of interest? the call
jkrcal 2016/12/21 14:35:21 Ah, you are right. I wanted to implement some hist
+ virtual bool OnNTPOpened() = 0;
+
// Fetch content suggestions.
virtual void OnPersistentSchedulerWakeUp() = 0;
« no previous file with comments | « no previous file | components/ntp_snippets/remote/scheduling_remote_suggestions_provider.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698