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

Unified Diff: content/public/browser/content_browser_client.cc

Issue 356543003: Audit the last usage of Geolocation and Notification permissions. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add auditing for actual usage, too. Created 6 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: content/public/browser/content_browser_client.cc
diff --git a/content/public/browser/content_browser_client.cc b/content/public/browser/content_browser_client.cc
index e8da55e8aff9564e9d0bc38b019db8b253085113..9e2e065d77b8c84345b79aba196e38d10ec432d1 100644
--- a/content/public/browser/content_browser_client.cc
+++ b/content/public/browser/content_browser_client.cc
@@ -231,6 +231,14 @@ void ContentBrowserClient::RequestMidiSysExPermission(
result_callback.Run(true);
}
+void ContentBrowserClient::UseContentSettingPermission(
+ content::WebContents* web_contents,
Michael van Ouwerkerk 2014/07/01 11:02:24 delete content::
Daniel Nishi 2014/07/01 18:37:48 Done.
+ const GURL& primary_url,
+ const GURL& secondary_url,
+ const std::string& setting_type) {
+ return;
+}
+
void ContentBrowserClient::RequestProtectedMediaIdentifierPermission(
WebContents* web_contents,
const GURL& origin,

Powered by Google App Engine
This is Rietveld 408576698