| Index: components/suggestions/blacklist_store.h
|
| diff --git a/components/suggestions/blacklist_store.h b/components/suggestions/blacklist_store.h
|
| index 6d1bc732311acbb91d3834878dbfc1837c1ab2b7..a76a6c985ed30437af7e77dae96783ceea08038f 100644
|
| --- a/components/suggestions/blacklist_store.h
|
| +++ b/components/suggestions/blacklist_store.h
|
| @@ -38,6 +38,9 @@ class BlacklistStore {
|
| // was already in the blacklist, its blacklisting timestamp gets updated.
|
| virtual bool BlacklistUrl(const GURL& url);
|
|
|
| + // Clears any blacklist data from the profile's preferences.
|
| + virtual void ClearBlacklist();
|
| +
|
| // Gets the time until any URL is ready for upload. Returns false if the
|
| // blacklist is empty.
|
| virtual bool GetTimeUntilReadyForUpload(base::TimeDelta* delta);
|
| @@ -76,9 +79,6 @@ class BlacklistStore {
|
| // a base64 encoding of its protobuf serialization.
|
| bool StoreBlacklist(const SuggestionsBlacklist& blacklist);
|
|
|
| - // Clears any blacklist data from the profile's preferences.
|
| - void ClearBlacklist();
|
| -
|
| private:
|
| // The pref service used to persist the suggestions blacklist.
|
| PrefService* pref_service_;
|
|
|