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

Side by Side Diff: chrome/browser/android/preferences/important_sites_util.h

Issue 1757163002: [ImportantSites] JNI bindings for CBD filtering and Important Sites. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 years, 8 months 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
(Empty)
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
3 // found in the LICENSE file.
4
5 #ifndef CHROME_BROWSER_ANDROID_PREFERENCES_IMPORTANT_SITES_UTIL_H_
6 #define CHROME_BROWSER_ANDROID_PREFERENCES_IMPORTANT_SITES_UTIL_H_
7
8 #include <string>
9 #include <vector>
10
11 #include "base/macros.h"
12
13 class Profile;
14
15 class ImportantSitesUtil {
16 public:
17 // This returns the top |<=max_results| important registerable
18 // domains. This uses site engagement and notifications to generate the list.
19 // |max_results| is assumed to be small.
20 // See net/base/registry_controlled_domains/registry_controlled_domain.h for
21 // more details on registrable domains and the current list of effective
22 // eTLDs.
23 static std::vector<std::string> GetImportantRegisterableDomains(
24 Profile* profile,
25 size_t max_results);
26
27 private:
28 DISALLOW_IMPLICIT_CONSTRUCTORS(ImportantSitesUtil);
29 };
30
31 #endif // CHROME_BROWSER_ANDROID_PREFERENCES_IMPORTANT_SITES_UTIL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698