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

Unified Diff: android_webview/browser/aw_browser_context.cc

Issue 107413006: Dismiss EME infobar when WebMediaPlayer is destroyed. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: added comments in PermissionQueueController Created 7 years 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: android_webview/browser/aw_browser_context.cc
diff --git a/android_webview/browser/aw_browser_context.cc b/android_webview/browser/aw_browser_context.cc
index e54bd55977ff81504f23e188b75f3810652a92ed..61432402c7780e8bf02440756d4bf2918c52689f 100644
--- a/android_webview/browser/aw_browser_context.cc
+++ b/android_webview/browser/aw_browser_context.cc
@@ -183,6 +183,21 @@ void AwBrowserContext::CancelMIDISysExPermissionRequest(
const GURL& requesting_frame) {
}
+void AwBrowserContext::RequestProtectedMediaIdentifierPermission(
+ int render_process_id,
+ int render_view_id,
+ int bridge_id,
+ int group_id,
+ const GURL& requesting_frame,
+ const ProtectedMediaIdentifierPermissionCallback& callback) {
+ // Always reject requests for testing.
+ callback.Run(false);
Kibeom Kim (inactive) 2014/01/02 22:42:28 NOTIMPLEMENTED();
Kibeom Kim (inactive) 2014/01/02 23:26:36 Done.
+}
+
+void AwBrowserContext::CancelProtectedMediaIdentifierPermissionRequests(
+ int group_id) {
Cris Neckar 2014/01/02 19:51:00 Please request another IPC message review from me
Kibeom Kim (inactive) 2014/01/02 22:42:28 NOTIMPLEMENTED();
Kibeom Kim (inactive) 2014/01/02 23:26:36 Done.
+}
+
net::URLRequestContextGetter*
AwBrowserContext::GetMediaRequestContextForRenderProcess(
int renderer_child_id) {

Powered by Google App Engine
This is Rietveld 408576698