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

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

Issue 483523006: Check all settings when checking mic and camera access (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Build fix for Android. Created 6 years, 4 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 d982b69507638e5ee0fe9c2dc9e8f09958c4750e..a72bc670a46e69c6c9f850f484f0756f70cfe9e6 100644
--- a/content/public/browser/content_browser_client.cc
+++ b/content/public/browser/content_browser_client.cc
@@ -345,4 +345,11 @@ ContentBrowserClient::OverrideCreateExternalVideoSurfaceContainer(
}
#endif
+bool ContentBrowserClient::CheckMediaAccessPermission(
+ BrowserContext* browser_context,
+ const GURL& security_origin,
+ MediaStreamType type) {
+ return false;
+}
+
} // namespace content

Powered by Google App Engine
This is Rietveld 408576698