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

Unified Diff: chrome/browser/engagement/site_engagement_service.h

Issue 1338603002: Implement a site engagement score based on time-on-site. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove flaky input simulation tests and combine callback and timer testing Created 5 years, 3 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: chrome/browser/engagement/site_engagement_service.h
diff --git a/chrome/browser/engagement/site_engagement_service.h b/chrome/browser/engagement/site_engagement_service.h
index 575f54d2809f6d7a9a1d4581816376bf5adbe1d0..d2595180054f84897fc6cd4856edd518b8e2c6e2 100644
--- a/chrome/browser/engagement/site_engagement_service.h
+++ b/chrome/browser/engagement/site_engagement_service.h
@@ -11,6 +11,7 @@
#include "base/time/default_clock.h"
#include "base/time/time.h"
#include "components/keyed_service/core/keyed_service.h"
+#include "ui/base/page_transition_types.h"
namespace base {
class DictionaryValue;
@@ -32,9 +33,12 @@ class SiteEngagementScore {
// The maximum number of points that can be accrued in one day.
static const double kMaxPointsPerDay;
- // The number of points given for a navigation.
+ // The number of points given for navigations.
static const double kNavigationPoints;
+ // The number of points given for user input (indicating time-on-site).
+ static const double kUserInputPoints;
+
// Decaying works by removing a portion of the score periodically. This
// constant determines how often that happens.
static const int kDecayPeriodInDays;
@@ -88,10 +92,10 @@ class SiteEngagementScoreProvider {
public:
// Returns a non-negative integer representing the engagement score of the
// origin for this URL.
- virtual int GetScore(const GURL& url) = 0;
+ virtual double GetScore(const GURL& url) = 0;
// Returns the sum of engagement points awarded to all sites.
- virtual int GetTotalEngagementPoints() = 0;
+ virtual double GetTotalEngagementPoints() = 0;
};
// Stores and retrieves the engagement score of an origin.
@@ -116,16 +120,24 @@ class SiteEngagementService : public KeyedService,
~SiteEngagementService() override;
// Returns a map of all stored origins and their engagement scores.
- std::map<GURL, int> GetScoreMap();
+ std::map<GURL, double> GetScoreMap();
+
+ // Update the karma score of the origin matching |url| for navigation.
+ void HandleNavigation(const GURL& url, ui::PageTransition transition);
- // Update the karma score of the origin matching |url| for user navigation.
- void HandleNavigation(const GURL& url);
+ // Update the karma score of the origin matching |url| for time-on-site, based
+ // on user input.
+ void HandleUserInput(const GURL& url);
// Overridden from SiteEngagementScoreProvider:
- int GetScore(const GURL& url) override;
- int GetTotalEngagementPoints() override;
+ double GetScore(const GURL& url) override;
+ double GetTotalEngagementPoints() override;
private:
+ // Adds the specified number of points to the given origin, respecting the
+ // maximum limits for the day and overall.
+ void AddPoints(const GURL& url, double points);
+
Profile* profile_;
// The clock used to vend times.
« no previous file with comments | « chrome/browser/engagement/site_engagement_helper.cc ('k') | chrome/browser/engagement/site_engagement_service.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698