| Index: content/shell/browser/layout_test/layout_test_content_browser_client.h
|
| diff --git a/content/shell/browser/layout_test/layout_test_content_browser_client.h b/content/shell/browser/layout_test/layout_test_content_browser_client.h
|
| index 0b8ea9766fce1fd7e35203460ba6fe4c78919d5f..f58032a0e4142900a26d3ac1b8015e3c3f594f0a 100644
|
| --- a/content/shell/browser/layout_test/layout_test_content_browser_client.h
|
| +++ b/content/shell/browser/layout_test/layout_test_content_browser_client.h
|
| @@ -17,23 +17,23 @@ class LayoutTestContentBrowserClient : public ShellContentBrowserClient {
|
| static LayoutTestContentBrowserClient* Get();
|
|
|
| LayoutTestContentBrowserClient();
|
| - virtual ~LayoutTestContentBrowserClient();
|
| + ~LayoutTestContentBrowserClient() override;
|
|
|
| // Will be lazily created when running layout tests.
|
| LayoutTestNotificationManager* GetLayoutTestNotificationManager();
|
|
|
| // ContentBrowserClient overrides.
|
| - virtual void RenderProcessWillLaunch(RenderProcessHost* host) override;
|
| - virtual void RequestDesktopNotificationPermission(
|
| + void RenderProcessWillLaunch(RenderProcessHost* host) override;
|
| + void RequestDesktopNotificationPermission(
|
| const GURL& source_origin,
|
| RenderFrameHost* render_frame_host,
|
| const base::Callback<void(blink::WebNotificationPermission)>& callback)
|
| - override;
|
| - virtual blink::WebNotificationPermission
|
| - CheckDesktopNotificationPermission(
|
| - const GURL& source_url,
|
| - ResourceContext* context,
|
| - int render_process_id) override;
|
| + override;
|
| + blink::WebNotificationPermission CheckDesktopNotificationPermission(
|
| + const GURL& source_url,
|
| + ResourceContext* context,
|
| + int render_process_id) override;
|
| +
|
| private:
|
| scoped_ptr<LayoutTestNotificationManager> layout_test_notification_manager_;
|
| };
|
|
|