| 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 f53553a0aa4acab352422e97cf67a1a722e4da71..11394aa9ce6120525602aaeffeed6675755740f2 100644
|
| --- a/ios/chrome/browser/content_suggestions/content_suggestions_mediator.h
|
| +++ b/ios/chrome/browser/content_suggestions/content_suggestions_mediator.h
|
| @@ -14,6 +14,8 @@ namespace ntp_snippets {
|
| class ContentSuggestionsService;
|
| }
|
|
|
| +@class ContentSuggestionIdentifier;
|
| +
|
| // Mediator for ContentSuggestions. Makes the interface between a
|
| // ntp_snippets::ContentSuggestionsService and the Objective-C services using
|
| // its data.
|
| @@ -25,6 +27,10 @@ class ContentSuggestionsService;
|
| NS_DESIGNATED_INITIALIZER;
|
| - (instancetype)init NS_UNAVAILABLE;
|
|
|
| +// Dismisses the suggestion from the content suggestions service. It doesn't
|
| +// change the UI.
|
| +- (void)dismissSuggestion:(ContentSuggestionIdentifier*)suggestionIdentifier;
|
| +
|
| @end
|
|
|
| #endif // IOS_CHROME_BROWSER_CONTENT_SUGGESTIONS_CONTENT_SUGGESTIONS_MEDIATOR_H_
|
|
|