| OLD | NEW |
| (Empty) | |
| 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 |
| 3 // found in the LICENSE file. |
| 4 |
| 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_ |
| 7 |
| 8 // Data sink for the ContentSuggestions. It will be notified when new data needs |
| 9 // to be pulled. |
| 10 @protocol ContentSuggestionsDataSink |
| 11 |
| 12 // Notifies the Data Sink that new data is available. |
| 13 - (void)dataAvailable; |
| 14 |
| 15 @end |
| 16 |
| 17 #endif // IOS_CHROME_BROWSER_UI_CONTENT_SUGGESTIONS_CONTENT_SUGGESTIONS_DATA_SI
NK_H_ |
| OLD | NEW |