OLD | NEW |
1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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 CHROME_BROWSER_ANDROID_NTP_MOST_VISITED_SITES_BRIDGE_H_ | 5 #ifndef CHROME_BROWSER_ANDROID_NTP_MOST_VISITED_SITES_BRIDGE_H_ |
6 #define CHROME_BROWSER_ANDROID_NTP_MOST_VISITED_SITES_BRIDGE_H_ | 6 #define CHROME_BROWSER_ANDROID_NTP_MOST_VISITED_SITES_BRIDGE_H_ |
7 | 7 |
8 #include <jni.h> | 8 #include <jni.h> |
9 #include <stddef.h> | 9 #include <stddef.h> |
10 | 10 |
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
74 void OnURLFilterChanged() override; | 74 void OnURLFilterChanged() override; |
75 | 75 |
76 private: | 76 private: |
77 Profile* const profile_; | 77 Profile* const profile_; |
78 Observer* supervisor_observer_; | 78 Observer* supervisor_observer_; |
79 ScopedObserver<SupervisedUserService, SupervisedUserServiceObserver> | 79 ScopedObserver<SupervisedUserService, SupervisedUserServiceObserver> |
80 register_observer_; | 80 register_observer_; |
81 }; | 81 }; |
82 SupervisorBridge supervisor_; | 82 SupervisorBridge supervisor_; |
83 | 83 |
| 84 ntp_tiles::PopularSites popular_sites_; |
84 ntp_tiles::MostVisitedSites most_visited_; | 85 ntp_tiles::MostVisitedSites most_visited_; |
85 | 86 |
86 DISALLOW_COPY_AND_ASSIGN(MostVisitedSitesBridge); | 87 DISALLOW_COPY_AND_ASSIGN(MostVisitedSitesBridge); |
87 }; | 88 }; |
88 | 89 |
89 #endif // CHROME_BROWSER_ANDROID_NTP_MOST_VISITED_SITES_BRIDGE_H_ | 90 #endif // CHROME_BROWSER_ANDROID_NTP_MOST_VISITED_SITES_BRIDGE_H_ |
OLD | NEW |