Index: chrome/browser/permissions/permission_blacklist_client.h |
diff --git a/chrome/browser/permissions/permission_blacklist_client.h b/chrome/browser/permissions/permission_blacklist_client.h |
index 239614362639a43dbec14e4be4c2a5fce6400df3..385977f4b91ac9fd587aea4c76a803421214a739 100644 |
--- a/chrome/browser/permissions/permission_blacklist_client.h |
+++ b/chrome/browser/permissions/permission_blacklist_client.h |
@@ -9,7 +9,6 @@ |
#include "base/memory/ref_counted.h" |
#include "chrome/browser/permissions/permission_util.h" |
#include "components/safe_browsing_db/database_manager.h" |
-#include "content/public/browser/permission_type.h" |
#include "content/public/browser/web_contents_observer.h" |
class GURL; |
@@ -36,7 +35,7 @@ class PermissionBlacklistClient |
// to be alive. |
static void CheckSafeBrowsingBlacklist( |
scoped_refptr<safe_browsing::SafeBrowsingDatabaseManager> db_manager, |
- content::PermissionType permission_type, |
+ ContentSettingsType content_settings_type, |
const GURL& request_origin, |
content::WebContents* web_contents, |
int timeout, |
@@ -47,7 +46,7 @@ class PermissionBlacklistClient |
PermissionBlacklistClient( |
scoped_refptr<safe_browsing::SafeBrowsingDatabaseManager> db_manager, |
- content::PermissionType permission_type, |
+ ContentSettingsType content_settings_type, |
const GURL& request_origin, |
content::WebContents* web_contents, |
int timeout, |
@@ -70,7 +69,7 @@ class PermissionBlacklistClient |
void WebContentsDestroyed() override; |
scoped_refptr<safe_browsing::SafeBrowsingDatabaseManager> db_manager_; |
- content::PermissionType permission_type_; |
+ ContentSettingsType content_settings_type_; |
// PermissionContextBase callback to run on the UI thread. |
base::Callback<void(bool)> callback_; |