| Index: extensions/shell/browser/shell_extension_host_delegate.h
|
| diff --git a/extensions/shell/browser/shell_extension_host_delegate.h b/extensions/shell/browser/shell_extension_host_delegate.h
|
| index 27934426a3bf18bc0547ea9e646cce9dabc441e2..4f7960163ea3509d4646a3bd4f0c3200cdfcf609 100644
|
| --- a/extensions/shell/browser/shell_extension_host_delegate.h
|
| +++ b/extensions/shell/browser/shell_extension_host_delegate.h
|
| @@ -14,29 +14,25 @@ namespace extensions {
|
| class ShellExtensionHostDelegate : public ExtensionHostDelegate {
|
| public:
|
| ShellExtensionHostDelegate();
|
| - virtual ~ShellExtensionHostDelegate();
|
| + ~ShellExtensionHostDelegate() override;
|
|
|
| // ExtensionHostDelegate implementation.
|
| - virtual void OnExtensionHostCreated(
|
| - content::WebContents* web_contents) override;
|
| - virtual void OnRenderViewCreatedForBackgroundPage(
|
| - ExtensionHost* host) override;
|
| - virtual content::JavaScriptDialogManager* GetJavaScriptDialogManager()
|
| - override;
|
| - virtual void CreateTab(content::WebContents* web_contents,
|
| - const std::string& extension_id,
|
| - WindowOpenDisposition disposition,
|
| - const gfx::Rect& initial_pos,
|
| - bool user_gesture) override;
|
| - virtual void ProcessMediaAccessRequest(
|
| - content::WebContents* web_contents,
|
| - const content::MediaStreamRequest& request,
|
| - const content::MediaResponseCallback& callback,
|
| - const Extension* extension) override;
|
| - virtual bool CheckMediaAccessPermission(content::WebContents* web_contents,
|
| - const GURL& security_origin,
|
| - content::MediaStreamType type,
|
| - const Extension* extension) override;
|
| + void OnExtensionHostCreated(content::WebContents* web_contents) override;
|
| + void OnRenderViewCreatedForBackgroundPage(ExtensionHost* host) override;
|
| + content::JavaScriptDialogManager* GetJavaScriptDialogManager() override;
|
| + void CreateTab(content::WebContents* web_contents,
|
| + const std::string& extension_id,
|
| + WindowOpenDisposition disposition,
|
| + const gfx::Rect& initial_pos,
|
| + bool user_gesture) override;
|
| + void ProcessMediaAccessRequest(content::WebContents* web_contents,
|
| + const content::MediaStreamRequest& request,
|
| + const content::MediaResponseCallback& callback,
|
| + const Extension* extension) override;
|
| + bool CheckMediaAccessPermission(content::WebContents* web_contents,
|
| + const GURL& security_origin,
|
| + content::MediaStreamType type,
|
| + const Extension* extension) override;
|
|
|
| private:
|
| DISALLOW_COPY_AND_ASSIGN(ShellExtensionHostDelegate);
|
|
|