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

Side by Side Diff: ios/chrome/browser/ui/content_suggestions/content_suggestions_data_sink.h

Issue 2751713002: Fetch Suggestions by category (Closed)
Patch Set: git cl web Created 3 years, 9 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 unified diff | Download patch
OLDNEW
1 // Copyright 2017 The Chromium Authors. All rights reserved. 1 // Copyright 2017 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef IOS_CHROME_BROWSER_UI_CONTENT_SUGGESTIONS_CONTENT_SUGGESTIONS_DATA_SINK_ H_ 5 #ifndef IOS_CHROME_BROWSER_UI_CONTENT_SUGGESTIONS_CONTENT_SUGGESTIONS_DATA_SINK_ H_
6 #define IOS_CHROME_BROWSER_UI_CONTENT_SUGGESTIONS_CONTENT_SUGGESTIONS_DATA_SINK_ H_ 6 #define IOS_CHROME_BROWSER_UI_CONTENT_SUGGESTIONS_CONTENT_SUGGESTIONS_DATA_SINK_ H_
7 7
8 @class ContentSuggestionIdentifier; 8 @class ContentSuggestionIdentifier;
9 @class ContentSuggestionsSectionInformation; 9 @class ContentSuggestionsSectionInformation;
10 10
11 // Data sink for the ContentSuggestions. It will be notified when new data needs 11 // Data sink for the ContentSuggestions. It will be notified when new data needs
12 // to be pulled. 12 // to be pulled.
13 @protocol ContentSuggestionsDataSink 13 @protocol ContentSuggestionsDataSink
14 14
15 // Notifies the Data Sink that new data is available. 15 // Notifies the Data Sink that new data is available for the section identified
16 - (void)dataAvailable; 16 // by |sectionInfo|.
17 - (void)dataAvailableForSection:
18 (ContentSuggestionsSectionInformation*)sectionInfo;
17 19
18 // The suggestion associated with |suggestionIdentifier| has been invalidated by 20 // The suggestion associated with |suggestionIdentifier| has been invalidated by
19 // the backend data source and should be cleared now. This is why this method is 21 // the backend data source and should be cleared now. This is why this method is
20 // about the data source pushing something to the data sink. 22 // about the data source pushing something to the data sink.
21 - (void)clearSuggestion:(ContentSuggestionIdentifier*)suggestionIdentifier; 23 - (void)clearSuggestion:(ContentSuggestionIdentifier*)suggestionIdentifier;
22 24
23 // Notifies the Data Sink that it must remove all current data and reload new 25 // Notifies the Data Sink that it must remove all current data and reload new
24 // ones. 26 // ones.
25 - (void)reloadAllData; 27 - (void)reloadAllData;
26 28
27 // The section corresponding to |sectionInfo| has been invalidated and must be 29 // The section corresponding to |sectionInfo| has been invalidated and must be
28 // cleared now. This is why this method is about the data source pushing 30 // cleared now. This is why this method is about the data source pushing
29 // something to the data sink. 31 // something to the data sink.
30 - (void)clearSection:(ContentSuggestionsSectionInformation*)sectionInfo; 32 - (void)clearSection:(ContentSuggestionsSectionInformation*)sectionInfo;
31 33
32 @end 34 @end
33 35
34 #endif // IOS_CHROME_BROWSER_UI_CONTENT_SUGGESTIONS_CONTENT_SUGGESTIONS_DATA_SI NK_H_ 36 #endif // IOS_CHROME_BROWSER_UI_CONTENT_SUGGESTIONS_CONTENT_SUGGESTIONS_DATA_SI NK_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698