Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(78)

Side by Side Diff: chrome/browser/android/ntp/popular_sites.h

Issue 2457033003: Add chrome://popular-sites-internals/ to iOS. (Closed)
Patch Set: Break out ...Client. Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 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_POPULAR_SITES_H_ 5 #ifndef CHROME_BROWSER_ANDROID_NTP_POPULAR_SITES_H_
6 #define CHROME_BROWSER_ANDROID_NTP_POPULAR_SITES_H_ 6 #define CHROME_BROWSER_ANDROID_NTP_POPULAR_SITES_H_
7 7
8 #include <memory>
9
8 #include "base/files/file_path.h" 10 #include "base/files/file_path.h"
9 #include "base/macros.h" 11 #include "base/macros.h"
10 #include "components/ntp_tiles/popular_sites.h" 12
13 class Profile;
14
15 namespace ntp_tiles {
16 class PopularSites;
17 } // namespace ntp_tiles
11 18
12 // TODO(sfiera): move to chrome_popular_sites.h 19 // TODO(sfiera): move to chrome_popular_sites.h
13 class ChromePopularSites { 20 class ChromePopularSites {
14 public: 21 public:
15 static base::FilePath GetDirectory(); 22 static std::unique_ptr<ntp_tiles::PopularSites> NewForProfile(
23 Profile* profile);
16 24
17 private: 25 private:
18 DISALLOW_IMPLICIT_CONSTRUCTORS(ChromePopularSites); 26 DISALLOW_IMPLICIT_CONSTRUCTORS(ChromePopularSites);
19 }; 27 };
20 28
21 #endif // CHROME_BROWSER_ANDROID_NTP_POPULAR_SITES_H_ 29 #endif // CHROME_BROWSER_ANDROID_NTP_POPULAR_SITES_H_
OLDNEW
« no previous file with comments | « chrome/browser/android/ntp/most_visited_sites_bridge.cc ('k') | chrome/browser/android/ntp/popular_sites.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698