| Index: content/public/browser/browser_plugin_guest_delegate.h
|
| diff --git a/content/public/browser/browser_plugin_guest_delegate.h b/content/public/browser/browser_plugin_guest_delegate.h
|
| index 7e1c2f7c7a72094958850934adf6fcc8aee5aac2..01deb0020b19cb480489971e655ac55ce9de9098 100644
|
| --- a/content/public/browser/browser_plugin_guest_delegate.h
|
| +++ b/content/public/browser/browser_plugin_guest_delegate.h
|
| @@ -87,12 +87,11 @@ class CONTENT_EXPORT BrowserPluginGuestDelegate {
|
| // Request permission from the delegate to perform an action of the provided
|
| // |permission_type|. Details of the permission request are found in
|
| // |request_info|. A |callback| is provided to make the decision.
|
| - // Returns whether the delegate has, or will handle the permission request.
|
| - virtual bool RequestPermission(
|
| + virtual void RequestPermission(
|
| BrowserPluginPermissionType permission_type,
|
| const base::DictionaryValue& request_info,
|
| const PermissionResponseCallback& callback,
|
| - bool allowed_by_default);
|
| + bool allowed_by_default) {}
|
|
|
| // Requests resolution of a potentially relative URL.
|
| virtual GURL ResolveURL(const std::string& src);
|
|
|