Chromium Code Reviews| Index: ios/chrome/browser/ui/content_suggestions/content_suggestions_commands.h |
| diff --git a/ios/chrome/browser/ui/content_suggestions/content_suggestions_commands.h b/ios/chrome/browser/ui/content_suggestions/content_suggestions_commands.h |
| index 7a229627d9417821243028becf26d9000bf3a0fa..ce6d6654b70af21907d87aeee9af17dd5a77252f 100644 |
| --- a/ios/chrome/browser/ui/content_suggestions/content_suggestions_commands.h |
| +++ b/ios/chrome/browser/ui/content_suggestions/content_suggestions_commands.h |
| @@ -5,6 +5,8 @@ |
| #ifndef IOS_CHROME_BROWSER_UI_CONTENT_SUGGESTIONS_CONTENT_SUGGESTIONS_COMMANDS_H_ |
| #define IOS_CHROME_BROWSER_UI_CONTENT_SUGGESTIONS_CONTENT_SUGGESTIONS_COMMANDS_H_ |
| +class GURL; |
| + |
| // Commands protocol for the ContentSuggestionsViewController. |
| @protocol ContentSuggestionsCommands |
| @@ -16,6 +18,8 @@ |
| - (void)openFirstPageOfReadingList; |
| // Opens the favicon associated with the cell with the |index|. |
| - (void)openFaviconAtIndex:(NSInteger)index; |
| +// Opens the |URL| |
|
lpromero
2017/02/13 13:42:40
Add a period.
gambard
2017/02/13 14:32:02
Done.
|
| +- (void)openURL:(const GURL&)url; |
| @end |