Index: content/public/browser/content_browser_client.h |
diff --git a/content/public/browser/content_browser_client.h b/content/public/browser/content_browser_client.h |
index 5bed0a9398d2e77aa7569cfad439f9f3461c257c..750f036e51ac705a2a0cd69d8c0a730ca557829d 100644 |
--- a/content/public/browser/content_browser_client.h |
+++ b/content/public/browser/content_browser_client.h |
@@ -473,6 +473,12 @@ class CONTENT_EXPORT ContentBrowserClient { |
base::Callback<void(bool)> result_callback, |
base::Closure* cancel_callback); |
+ // Informs the content settings host map that a permission has been used. |
+ virtual void UseContentSettingPermission(WebContents* web_contents, |
+ const GURL& primary_url, |
+ const GURL& secondary_url, |
+ const std::string& setting_type); |
+ |
// Returns true if the given page is allowed to open a window of the given |
// type. If true is returned, |no_javascript_access| will indicate whether |
// the window that is created should be scriptable/in the same process. |