| 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 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 58 | 58 |
| 59 // Gets the large icon cache. | 59 // Gets the large icon cache. |
| 60 - (LargeIconCache*)largeIconCache; | 60 - (LargeIconCache*)largeIconCache; |
| 61 | 61 |
| 62 // Gets the large icon service. | 62 // Gets the large icon service. |
| 63 - (favicon::LargeIconService*)largeIconService; | 63 - (favicon::LargeIconService*)largeIconService; |
| 64 | 64 |
| 65 // Gets the toolbar delegate. | 65 // Gets the toolbar delegate. |
| 66 - (id<WebToolbarDelegate>)toolbarDelegate; | 66 - (id<WebToolbarDelegate>)toolbarDelegate; |
| 67 | 67 |
| 68 // Gets the tab model. |
| 69 - (TabModel*)tabModel; |
| 68 | 70 |
| 69 @end | 71 @end |
| 70 | 72 |
| 71 #endif // IOS_CHROME_BROWSER_UI_NTP_GOOGLE_LANDING_DATA_SOURCE_H_ | 73 #endif // IOS_CHROME_BROWSER_UI_NTP_GOOGLE_LANDING_DATA_SOURCE_H_ |
| OLD | NEW |