Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1320)

Unified Diff: content/shell/browser/layout_test/layout_test_content_browser_client.h

Issue 671663002: Standardize usage of virtual/override/final in content/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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_;
};

Powered by Google App Engine
This is Rietveld 408576698