1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71
|
// Copyright 2020 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef COMPONENTS_POLICY_CONTENT_SAFE_SEARCH_SERVICE_H_
#define COMPONENTS_POLICY_CONTENT_SAFE_SEARCH_SERVICE_H_
#include <memory>
#include "base/functional/callback_forward.h"
#include "base/memory/raw_ptr.h"
#include "base/memory/singleton.h"
#include "components/keyed_service/content/browser_context_keyed_service_factory.h"
#include "components/keyed_service/core/keyed_service.h"
class GURL;
namespace safe_search_api {
class URLChecker;
} // namespace safe_search_api
// SafeSearchService and SafeSearchFactory provide a way for
// us to access a Context-specific instance of safe_search_api.
class SafeSearchService : public KeyedService {
public:
using CheckSafeSearchCallback = base::OnceCallback<void(bool is_safe)>;
explicit SafeSearchService(content::BrowserContext* browser_context);
SafeSearchService(const SafeSearchService&) = delete;
SafeSearchService& operator=(const SafeSearchService&) = delete;
~SafeSearchService() override;
// Starts a call to the Safe Search API for the given URL to determine whether
// the URL is "safe" (not porn). Returns whether |callback| was run
// synchronously.
bool CheckSafeSearchURL(const GURL& url, CheckSafeSearchCallback callback);
// Creates a SafeSearch URLChecker using a given URLLoaderFactory for testing.
void SetSafeSearchURLCheckerForTest(
std::unique_ptr<safe_search_api::URLChecker> safe_search_url_checker);
private:
const raw_ptr<content::BrowserContext> browser_context_;
std::unique_ptr<safe_search_api::URLChecker> safe_search_url_checker_;
};
class SafeSearchFactory : public BrowserContextKeyedServiceFactory {
public:
SafeSearchFactory(const SafeSearchFactory&) = delete;
SafeSearchFactory& operator=(const SafeSearchFactory&) = delete;
static SafeSearchFactory* GetInstance();
static SafeSearchService* GetForBrowserContext(
content::BrowserContext* context);
private:
SafeSearchFactory();
~SafeSearchFactory() override;
friend struct base::DefaultSingletonTraits<SafeSearchFactory>;
// BrowserContextKeyedServiceFactory:
std::unique_ptr<KeyedService> BuildServiceInstanceForBrowserContext(
content::BrowserContext* context) const override;
// Finds which browser context (if any) to use.
content::BrowserContext* GetBrowserContextToUse(
content::BrowserContext* context) const override;
};
#endif // COMPONENTS_POLICY_CONTENT_SAFE_SEARCH_SERVICE_H_
|