| 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 202f943302c32cea7bf4dd710e108978a2a37331..7b8e3024641eac2fd948c98311603662e68904d2 100644
|
| --- a/content/public/browser/content_browser_client.cc
|
| +++ b/content/public/browser/content_browser_client.cc
|
| @@ -227,41 +227,6 @@ ContentBrowserClient::CheckDesktopNotificationPermission(
|
| return blink::WebNotificationPermissionAllowed;
|
| }
|
|
|
| -void ContentBrowserClient::RequestGeolocationPermission(
|
| - WebContents* web_contents,
|
| - int bridge_id,
|
| - const GURL& requesting_frame,
|
| - bool user_gesture,
|
| - const base::Callback<void(bool)>& result_callback) {
|
| - result_callback.Run(true);
|
| -}
|
| -
|
| -// TODO(miguelg): replace all Create*Permission with a single
|
| -// CreatePermission(enum permission) method.
|
| -void ContentBrowserClient::CancelGeolocationPermissionRequest(
|
| - WebContents* web_contents,
|
| - int bridge_id,
|
| - const GURL& requesting_frame) {
|
| -}
|
| -
|
| -void ContentBrowserClient::RequestMidiSysExPermission(
|
| - WebContents* web_contents,
|
| - int bridge_id,
|
| - const GURL& requesting_frame,
|
| - bool user_gesture,
|
| - base::Callback<void(bool)> result_callback,
|
| - base::Closure* cancel_callback) {
|
| - result_callback.Run(true);
|
| -}
|
| -
|
| -void ContentBrowserClient::RequestProtectedMediaIdentifierPermission(
|
| - WebContents* web_contents,
|
| - const GURL& origin,
|
| - base::Callback<void(bool)> result_callback,
|
| - base::Closure* cancel_callback) {
|
| - result_callback.Run(true);
|
| -}
|
| -
|
| bool ContentBrowserClient::CanCreateWindow(
|
| const GURL& opener_url,
|
| const GURL& opener_top_level_frame_url,
|
|
|