| Index: chrome/browser/engagement/site_engagement_score.h
|
| diff --git a/chrome/browser/engagement/site_engagement_score.h b/chrome/browser/engagement/site_engagement_score.h
|
| index 405051376c4f1853ad2f43fb7fb22a6aae3e654c..70619da395e30033b954003eb31e8f43ea47960e 100644
|
| --- a/chrome/browser/engagement/site_engagement_score.h
|
| +++ b/chrome/browser/engagement/site_engagement_score.h
|
| @@ -18,7 +18,7 @@ namespace base {
|
| class Clock;
|
| }
|
|
|
| -class HostContentSettingsMap;
|
| +class Profile;
|
|
|
| class SiteEngagementScore {
|
| public:
|
| @@ -114,7 +114,7 @@ class SiteEngagementScore {
|
| // SiteEngagementScore.
|
| SiteEngagementScore(base::Clock* clock,
|
| const GURL& origin,
|
| - HostContentSettingsMap* settings_map);
|
| + Profile* profile);
|
| SiteEngagementScore(SiteEngagementScore&& other);
|
| ~SiteEngagementScore();
|
|
|
| @@ -218,8 +218,8 @@ class SiteEngagementScore {
|
| // The origin this score represents.
|
| GURL origin_;
|
|
|
| - // The settings map to write this score to when Commit() is called.
|
| - HostContentSettingsMap* settings_map_;
|
| + // The profile to write this score to when Commit() is called.
|
| + Profile* profile_;
|
|
|
| DISALLOW_COPY_AND_ASSIGN(SiteEngagementScore);
|
| };
|
|
|