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

Unified Diff: components/web_restrictions/browser/web_restrictions_client.h

Issue 1684153002: Web restrictions component. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Use source_set for test_support Created 4 years, 10 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: components/web_restrictions/browser/web_restrictions_client.h
diff --git a/components/web_restrictions/browser/web_restrictions_client.h b/components/web_restrictions/browser/web_restrictions_client.h
new file mode 100644
index 0000000000000000000000000000000000000000..777de48adc3999f8639e510fbecd5e1bfad98602
--- /dev/null
+++ b/components/web_restrictions/browser/web_restrictions_client.h
@@ -0,0 +1,101 @@
+// Copyright 2015 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 COMPONENTS_WEB_RESTRICTION_WEB_RESTRICTIONS_CLIENT_H_
+#define COMPONENTS_WEB_RESTRICTION_WEB_RESTRICTIONS_CLIENT_H_
+
+#include <jni.h>
+#include <list>
+#include <map>
+#include <string>
+
+#include "base/android/jni_android.h"
+#include "base/callback.h"
+#include "base/macros.h"
+#include "base/memory/ref_counted.h"
+#include "base/sequenced_task_runner.h"
+#include "base/single_thread_task_runner.h"
+#include "url/gurl.h"
+
+namespace web_restrictions {
+
+enum UrlAccess { ALLOW, DISALLOW, PENDING };
+
+class WebRestrictionsClient {
+ public:
+ // An instance of this class is expected to live through the lifetime of a
+ // browser and uses raw pointers in callbacks.
+ // Any changes to the class, enable/disable/change should be done through the
+ // SetAuthority(...) method.
+ WebRestrictionsClient();
+ ~WebRestrictionsClient();
+
+ // Register JNI methods.
+ static bool Register(JNIEnv* env);
+
+ // Verify the content provider and query it for basic information like does it
+ // support handling requests. This should be called everytime the provider
+ // changes. An empty authority can be used to disable this class.
+ void SetAuthority(const std::string& content_provider_authority);
+
+ // WebRestrictionsProvider:
+ UrlAccess ShouldProceed(bool is_main_frame,
+ const GURL& url,
+ const base::Callback<void(bool)>& callback);
+
+ bool SupportsRequest() const;
+
+ bool GetErrorHtml(const GURL& url, std::string* error_html) const;
+
+ void RequestPermission(const GURL& url,
+ const base::Callback<void(bool)>& callback);
+
+ void OnWebRestrictionsChanged();
+
+ private:
+ struct ShouldProceedResult {
+ bool ok_to_proceed;
+ std::string error_page;
+ };
+
+ void RecordURLAccess(const GURL& url);
+
+ void UpdateCache(std::string provider_authority,
+ GURL url,
+ bool should_proceed,
+ std::string error_page);
+
+ void RequestSupportKnown(std::string provider_authority,
+ bool supports_request);
+
+ void ClearCache();
+
+ static ShouldProceedResult ShouldProceedTask(
+ const GURL& url,
+ const base::android::JavaRef<jobject>& java_provider);
+
+ void OnShouldProceedComplete(std::string provider_authority,
+ const GURL& url,
+ const base::Callback<void(bool)>& callback,
+ const ShouldProceedResult& result);
+
+ // Set up after SetAuthority().
+ bool initialized_;
+ bool supports_request_;
+ base::android::ScopedJavaGlobalRef<jobject> java_provider_;
+ std::string provider_authority_;
+
+ scoped_refptr<base::SequencedTaskRunner> background_task_runner_;
+ scoped_refptr<base::SingleThreadTaskRunner> single_thread_task_runner_;
+
+ std::map<GURL, std::string> error_page_cache_;
+ std::map<GURL, bool> url_access_cache_;
+ std::list<GURL> recent_urls_;
+
+ DISALLOW_COPY_AND_ASSIGN(WebRestrictionsClient);
+};
+
+} // namespace web_restrictions
+
+#endif // COMPONENTS_WEB_RESTRICTION_WEB_RESTRICTIONS_CLIENT_H_

Powered by Google App Engine
This is Rietveld 408576698