Index: content/browser/download/download_manager_impl_unittest.cc |
diff --git a/content/browser/download/download_manager_impl_unittest.cc b/content/browser/download/download_manager_impl_unittest.cc |
index e8927468990ac2906ede3afb711097d9733236c1..34d4e5e572b96f93244cc20fbc847ffed7ef43cc 100644 |
--- a/content/browser/download/download_manager_impl_unittest.cc |
+++ b/content/browser/download/download_manager_impl_unittest.cc |
@@ -415,6 +415,16 @@ class MockBrowserContext : public BrowserContext { |
int render_view_id, |
int bridge_id, |
const GURL& requesting_frame)); |
+ MOCK_METHOD6(RequestProtectedMediaIdentifierPermission, |
+ void(int render_process_id, |
+ int render_view_id, |
+ int bridge_id, |
+ int group_id, |
+ const GURL& requesting_frame, |
+ const ProtectedMediaIdentifierPermissionCallback& |
+ callback)); |
xhwang
2013/12/30 19:00:59
indent callback?
Kibeom Kim (inactive)
2013/12/30 21:52:24
Done.
|
+ MOCK_METHOD1(CancelProtectedMediaIdentifierPermissionRequests, |
+ void(int group_id)); |
MOCK_METHOD0(GetResourceContext, ResourceContext*()); |
MOCK_METHOD0(GetDownloadManagerDelegate, DownloadManagerDelegate*()); |
MOCK_METHOD0(GetGeolocationPermissionContext, |