| Index: ios/chrome/browser/content_suggestions/content_suggestions_mediator.h
|
| diff --git a/ios/chrome/browser/content_suggestions/content_suggestions_mediator.h b/ios/chrome/browser/content_suggestions/content_suggestions_mediator.h
|
| index 00d2d4d03cdad23f1cc8514d024777fe7459c8b9..0ba0a2e5a1b2c066e7d8e9a6e305aa4f97fc1b96 100644
|
| --- a/ios/chrome/browser/content_suggestions/content_suggestions_mediator.h
|
| +++ b/ios/chrome/browser/content_suggestions/content_suggestions_mediator.h
|
| @@ -26,6 +26,7 @@ class MostVisitedSites;
|
|
|
| @protocol ContentSuggestionsCommands;
|
| @class ContentSuggestionIdentifier;
|
| +class GURL;
|
|
|
| // Mediator for ContentSuggestions. Makes the interface between a
|
| // ntp_snippets::ContentSuggestionsService and the Objective-C services using
|
| @@ -52,6 +53,12 @@ initWithContentService:
|
| - (void)dismissSuggestion:
|
| (nonnull ContentSuggestionIdentifier*)suggestionIdentifier;
|
|
|
| +// Blacklists the URL from the Most Visited sites.
|
| +- (void)blacklistMostVisitedURL:(GURL)URL;
|
| +
|
| +// Whitelists the URL from the Most Visited sites.
|
| +- (void)whitelistMostVisitedURL:(GURL)URL;
|
| +
|
| @end
|
|
|
| #endif // IOS_CHROME_BROWSER_CONTENT_SUGGESTIONS_CONTENT_SUGGESTIONS_MEDIATOR_H_
|
|
|