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

Unified Diff: chrome/browser/supervised_user/supervised_user_service.h

Issue 1813833002: Add report URL to safe search API functionality. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressing comments Created 4 years, 9 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/supervised_user/supervised_user_service.h
diff --git a/chrome/browser/supervised_user/supervised_user_service.h b/chrome/browser/supervised_user/supervised_user_service.h
index 7c625867d67568a8719941efa7076b361da31621..c63e0ee378cd2cdf99a0d625c2d2f09414718fea 100644
--- a/chrome/browser/supervised_user/supervised_user_service.h
+++ b/chrome/browser/supervised_user/supervised_user_service.h
@@ -20,6 +20,7 @@
#include "base/scoped_observer.h"
#include "base/strings/string16.h"
#include "build/build_config.h"
+#include "chrome/browser/supervised_user/experimental/safe_search_url_reporter.h"
#include "chrome/browser/supervised_user/experimental/supervised_user_blacklist.h"
#include "chrome/browser/supervised_user/supervised_user_url_filter.h"
#include "chrome/browser/supervised_user/supervised_users.h"
@@ -120,6 +121,10 @@ class SupervisedUserService : public KeyedService,
// Adds an access request for the given URL.
void AddURLAccessRequest(const GURL& url, const SuccessCallback& callback);
+ // Reports |url| to the SafeSearch API, because the user thinks this is an
+ // inappropriate URL.
+ void ReportURL(const GURL& url, const SuccessCallback& callback);
+
// Adds an update request for the given WebStore item (App/Extension).
void AddExtensionUpdateRequest(const std::string& extension_id,
const base::Version& version,
@@ -180,6 +185,8 @@ class SupervisedUserService : public KeyedService,
void AddPermissionRequestCreator(
scoped_ptr<PermissionRequestCreator> creator);
+ void SetSafeSearchUrlReporter(scoped_ptr<SafeSearchUrlReporter> reporter);
+
// ProfileKeyedService override:
void Shutdown() override;
@@ -398,6 +405,9 @@ class SupervisedUserService : public KeyedService,
// Used to create permission requests.
ScopedVector<PermissionRequestCreator> permissions_creators_;
+ // Used to report inappropriate URLs to SafeSarch API.
+ scoped_ptr<SafeSearchUrlReporter> url_reporter_;
+
base::ObserverList<SupervisedUserServiceObserver> observer_list_;
base::WeakPtrFactory<SupervisedUserService> weak_ptr_factory_;

Powered by Google App Engine
This is Rietveld 408576698