Chromium Code Reviews| Index: content/shell/browser/shell_browser_context.cc |
| diff --git a/content/shell/browser/shell_browser_context.cc b/content/shell/browser/shell_browser_context.cc |
| index 8533713dc6684ef63ad32d2d7ab89e68beaacfdd..b81a5b3fd4ff25fa19d72f7d8c82a60ecc348699 100644 |
| --- a/content/shell/browser/shell_browser_context.cc |
| +++ b/content/shell/browser/shell_browser_context.cc |
| @@ -199,6 +199,21 @@ void ShellBrowserContext::CancelMIDISysExPermissionRequest( |
| const GURL& requesting_frame) { |
| } |
| +void ShellBrowserContext::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. |
|
jam
2014/01/02 22:50:56
hmm, content/shell is an example of a content embe
Kibeom Kim (inactive)
2014/01/02 23:26:36
(This is not used in any test, unless some tests a
jam
2014/01/03 00:54:23
yes, since content shell is just an example of a s
jam
2014/01/03 00:57:35
btw i've sent out a fix in https://codereview.chro
Kibeom Kim (inactive)
2014/01/03 00:59:17
Done. (already :) )
|
| + callback.Run(false); |
| +} |
| + |
| +void ShellBrowserContext::CancelProtectedMediaIdentifierPermissionRequests( |
| + int group_id) { |
| +} |
| + |
| net::URLRequestContextGetter* |
| ShellBrowserContext::CreateRequestContextForStoragePartition( |
| const base::FilePath& partition_path, |