Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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_H_ | 5 #ifndef CHROME_BROWSER_ANDROID_NTP_MOST_VISITED_SITES_H_ |
| 6 #define CHROME_BROWSER_ANDROID_NTP_MOST_VISITED_SITES_H_ | 6 #define CHROME_BROWSER_ANDROID_NTP_MOST_VISITED_SITES_H_ |
| 7 | 7 |
| 8 #include <stddef.h> | 8 #include <stddef.h> |
| 9 | 9 |
| 10 #include <memory> | 10 #include <memory> |
| (...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 117 Suggestion(); | 117 Suggestion(); |
| 118 ~Suggestion(); | 118 ~Suggestion(); |
| 119 | 119 |
| 120 Suggestion(Suggestion&&); | 120 Suggestion(Suggestion&&); |
| 121 Suggestion& operator=(Suggestion&&); | 121 Suggestion& operator=(Suggestion&&); |
| 122 | 122 |
| 123 private: | 123 private: |
| 124 DISALLOW_COPY_AND_ASSIGN(Suggestion); | 124 DISALLOW_COPY_AND_ASSIGN(Suggestion); |
| 125 }; | 125 }; |
| 126 | 126 |
| 127 MostVisitedSites(PrefService* prefs, | 127 MostVisitedSites(const scoped_refptr<base::SingleThreadTaskRunner>& ui_thread, |
|
Bernhard Bauer
2016/05/24 15:14:47
If you are going to keep a reference, take the sco
sfiera
2016/05/24 16:59:20
Done.
| |
| 128 const scoped_refptr<base::SingleThreadTaskRunner>& db_thread, | |
| 129 const scoped_refptr<base::TaskRunner>& blocking_runner, | |
| 130 PrefService* prefs, | |
| 128 const TemplateURLService* template_url_service, | 131 const TemplateURLService* template_url_service, |
| 129 variations::VariationsService* variations_service, | 132 variations::VariationsService* variations_service, |
| 130 net::URLRequestContextGetter* download_context, | 133 net::URLRequestContextGetter* download_context, |
| 131 const base::FilePath& popular_sites_directory, | 134 const base::FilePath& popular_sites_directory, |
| 132 scoped_refptr<history::TopSites> top_sites, | 135 scoped_refptr<history::TopSites> top_sites, |
| 133 suggestions::SuggestionsService* suggestions, | 136 suggestions::SuggestionsService* suggestions, |
| 134 MostVisitedSitesSupervisor* supervisor); | 137 MostVisitedSitesSupervisor* supervisor); |
| 135 | 138 |
| 136 ~MostVisitedSites() override; | 139 ~MostVisitedSites() override; |
| 137 | 140 |
| (...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 264 suggestions_subscription_; | 267 suggestions_subscription_; |
| 265 | 268 |
| 266 ScopedObserver<history::TopSites, history::TopSitesObserver> scoped_observer_; | 269 ScopedObserver<history::TopSites, history::TopSitesObserver> scoped_observer_; |
| 267 | 270 |
| 268 MostVisitedSource mv_source_; | 271 MostVisitedSource mv_source_; |
| 269 | 272 |
| 270 std::unique_ptr<PopularSites> popular_sites_; | 273 std::unique_ptr<PopularSites> popular_sites_; |
| 271 | 274 |
| 272 SuggestionsVector current_suggestions_; | 275 SuggestionsVector current_suggestions_; |
| 273 | 276 |
| 277 scoped_refptr<base::SingleThreadTaskRunner> ui_thread_; | |
| 278 scoped_refptr<base::SingleThreadTaskRunner> db_thread_; | |
| 279 scoped_refptr<base::TaskRunner> blocking_runner_; | |
| 280 | |
| 274 // For callbacks may be run after destruction. | 281 // For callbacks may be run after destruction. |
| 275 base::WeakPtrFactory<MostVisitedSites> weak_ptr_factory_; | 282 base::WeakPtrFactory<MostVisitedSites> weak_ptr_factory_; |
| 276 | 283 |
| 277 DISALLOW_COPY_AND_ASSIGN(MostVisitedSites); | 284 DISALLOW_COPY_AND_ASSIGN(MostVisitedSites); |
| 278 }; | 285 }; |
| 279 | 286 |
| 280 #endif // CHROME_BROWSER_ANDROID_NTP_MOST_VISITED_SITES_H_ | 287 #endif // CHROME_BROWSER_ANDROID_NTP_MOST_VISITED_SITES_H_ |
| OLD | NEW |