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

Unified Diff: chrome/browser/permissions/permission_decision_auto_blocker.h

Issue 2926773002: Check embargo status in PlatformNotificationServiceImpl::CheckPermissionOnIOThread (Closed)
Patch Set: Nits Created 3 years, 6 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/permissions/permission_decision_auto_blocker.h
diff --git a/chrome/browser/permissions/permission_decision_auto_blocker.h b/chrome/browser/permissions/permission_decision_auto_blocker.h
index 79bc114478311ddc990350f5891f3e3eefe795f4..89bc81c7329cbc7ef05f8cd4bbd4de3ae435e16e 100644
--- a/chrome/browser/permissions/permission_decision_auto_blocker.h
+++ b/chrome/browser/permissions/permission_decision_auto_blocker.h
@@ -11,6 +11,7 @@
#include "base/memory/singleton.h"
#include "base/time/default_clock.h"
#include "chrome/browser/permissions/permission_result.h"
+#include "components/content_settings/core/browser/host_content_settings_map.h"
#include "components/content_settings/core/common/content_settings_types.h"
#include "components/keyed_service/content/browser_context_keyed_service_factory.h"
#include "components/keyed_service/core/keyed_service.h"
@@ -58,6 +59,17 @@ class PermissionDecisionAutoBlocker : public KeyedService {
static PermissionDecisionAutoBlocker* GetForProfile(Profile* profile);
+ // Checks the status of the content setting to determine if |request_origin|
+ // is under embargo for |permission|. This checks both embargo for Permissions
+ // Blacklisting and repeated dismissals. Prefer to use
+ // PermissionManager::GetPermissionStatus when possible. This method is only
+ // exposed to facilitate permission checks from threads other than the
+ // UI thread. See crbug.com/658020.
+ static PermissionResult GetEmbargoResult(HostContentSettingsMap* settings_map,
+ const GURL& request_origin,
+ ContentSettingsType permission,
+ base::Time current_time);
+
// Updates the threshold to start blocking prompts from the field trial.
static void UpdateFromVariations();

Powered by Google App Engine
This is Rietveld 408576698