| OLD | NEW |
| 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_NTP_GOOGLE_LANDING_DATA_SOURCE_H_ | 5 #ifndef IOS_CHROME_BROWSER_UI_NTP_GOOGLE_LANDING_DATA_SOURCE_H_ |
| 6 #define IOS_CHROME_BROWSER_UI_NTP_GOOGLE_LANDING_DATA_SOURCE_H_ | 6 #define IOS_CHROME_BROWSER_UI_NTP_GOOGLE_LANDING_DATA_SOURCE_H_ |
| 7 | 7 |
| 8 #import <Foundation/Foundation.h> | 8 #import <Foundation/Foundation.h> |
| 9 | 9 |
| 10 #include "components/ntp_tiles/ntp_tile.h" | 10 #include "components/ntp_tiles/ntp_tile.h" |
| (...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 64 | 64 |
| 65 // Gets the large icon cache. | 65 // Gets the large icon cache. |
| 66 - (LargeIconCache*)largeIconCache; | 66 - (LargeIconCache*)largeIconCache; |
| 67 | 67 |
| 68 // Gets the large icon service. | 68 // Gets the large icon service. |
| 69 - (favicon::LargeIconService*)largeIconService; | 69 - (favicon::LargeIconService*)largeIconService; |
| 70 | 70 |
| 71 // Gets the toolbar delegate. | 71 // Gets the toolbar delegate. |
| 72 - (id<WebToolbarDelegate>)toolbarDelegate; | 72 - (id<WebToolbarDelegate>)toolbarDelegate; |
| 73 | 73 |
| 74 // Gets the tab model. | |
| 75 - (TabModel*)tabModel; | |
| 76 | 74 |
| 77 @end | 75 @end |
| 78 | 76 |
| 79 #endif // IOS_CHROME_BROWSER_UI_NTP_GOOGLE_LANDING_DATA_SOURCE_H_ | 77 #endif // IOS_CHROME_BROWSER_UI_NTP_GOOGLE_LANDING_DATA_SOURCE_H_ |
| OLD | NEW |