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

Unified Diff: chrome/browser/safe_search_api/safe_search_url_checker.h

Issue 2399823002: Extract the SafeSearch client to a separate directory (Closed)
Patch Set: Renamed to safe_search_api Created 4 years, 2 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
« no previous file with comments | « chrome/browser/safe_search_api/OWNERS ('k') | chrome/browser/safe_search_api/safe_search_url_checker.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/safe_search_api/safe_search_url_checker.h
diff --git a/chrome/browser/safe_search_api/safe_search_url_checker.h b/chrome/browser/safe_search_api/safe_search_url_checker.h
new file mode 100644
index 0000000000000000000000000000000000000000..6c195b8f6dd5fdfd68c656d49ab78ea5cbde49f1
--- /dev/null
+++ b/chrome/browser/safe_search_api/safe_search_url_checker.h
@@ -0,0 +1,68 @@
+// Copyright 2014 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef CHROME_BROWSER_SAFE_SEARCH_API_SAFE_SEARCH_URL_CHECKER_H_
+#define CHROME_BROWSER_SAFE_SEARCH_API_SAFE_SEARCH_URL_CHECKER_H_
+
+#include <stddef.h>
+
+#include "base/callback_forward.h"
+#include "base/containers/mru_cache.h"
+#include "base/macros.h"
+#include "base/memory/scoped_vector.h"
+#include "base/time/time.h"
+#include "net/url_request/url_fetcher_delegate.h"
+#include "url/gurl.h"
+
+namespace net {
+class URLFetcher;
+class URLRequestContextGetter;
+}
+
+// This class uses the SafeSearch API to check the SafeSearch classification
+// of the content on a given URL and returns the result asynchronously
+// via a callback.
+class SafeSearchURLChecker : net::URLFetcherDelegate {
+ public:
+ enum class Classification { SAFE, UNSAFE };
+
+ // Returns whether |url| should be blocked. Called from CheckURL.
+ using CheckCallback = base::Callback<
+ void(const GURL&, Classification classification, bool /* uncertain */)>;
+
+ explicit SafeSearchURLChecker(net::URLRequestContextGetter* context);
+ SafeSearchURLChecker(net::URLRequestContextGetter* context,
+ size_t cache_size);
+ ~SafeSearchURLChecker() override;
+
+ // Returns whether |callback| was run synchronously.
+ bool CheckURL(const GURL& url, const CheckCallback& callback);
+
+ void SetCacheTimeoutForTesting(const base::TimeDelta& timeout) {
+ cache_timeout_ = timeout;
+ }
+
+ private:
+ struct Check;
+ struct CheckResult {
+ CheckResult(Classification classification, bool uncertain);
+ Classification classification;
+ bool uncertain;
+ base::TimeTicks timestamp;
+ };
+
+ // net::URLFetcherDelegate implementation.
+ void OnURLFetchComplete(const net::URLFetcher* source) override;
+
+ net::URLRequestContextGetter* context_;
+
+ ScopedVector<Check> checks_in_progress_;
+
+ base::MRUCache<GURL, CheckResult> cache_;
+ base::TimeDelta cache_timeout_;
+
+ DISALLOW_COPY_AND_ASSIGN(SafeSearchURLChecker);
+};
+
+#endif // CHROME_BROWSER_SAFE_SEARCH_API_SAFE_SEARCH_URL_CHECKER_H_
« no previous file with comments | « chrome/browser/safe_search_api/OWNERS ('k') | chrome/browser/safe_search_api/safe_search_url_checker.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698