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

Unified Diff: athena/main/athena_main.cc

Issue 641683003: C++11 override style change for athena (Closed) Base URL: https://chromium.googlesource.com/chromium/src@master
Patch Set: rebase 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
« no previous file with comments | « athena/main/athena_launcher.cc ('k') | athena/main/athena_renderer_pdf_helper.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: athena/main/athena_main.cc
diff --git a/athena/main/athena_main.cc b/athena/main/athena_main.cc
index c8cc2e89f35dbcfc6e20179e316ced69eb5343fd..98fe171c84cda61aa19e634413372364e656f9df 100644
--- a/athena/main/athena_main.cc
+++ b/athena/main/athena_main.cc
@@ -46,7 +46,7 @@ const char kDefaultAppPath[] =
class AthenaDesktopController : public extensions::DesktopController {
public:
AthenaDesktopController() {}
- virtual ~AthenaDesktopController() {}
+ ~AthenaDesktopController() override {}
private:
// extensions::DesktopController:
@@ -80,7 +80,7 @@ class AthenaDesktopController : public extensions::DesktopController {
class AthenaBrowserMainDelegate : public extensions::ShellBrowserMainDelegate {
public:
AthenaBrowserMainDelegate() {}
- virtual ~AthenaBrowserMainDelegate() {}
+ ~AthenaBrowserMainDelegate() override {}
// extensions::ShellBrowserMainDelegate:
virtual void Start(content::BrowserContext* context) override {
@@ -126,7 +126,7 @@ class AthenaContentBrowserClient
AthenaContentBrowserClient()
: extensions::ShellContentBrowserClient(new AthenaBrowserMainDelegate()) {
}
- virtual ~AthenaContentBrowserClient() {}
+ ~AthenaContentBrowserClient() override {}
// content::ContentBrowserClient:
virtual content::WebContentsViewDelegate* GetWebContentsViewDelegate(
@@ -142,7 +142,7 @@ class AthenaContentRendererClient
: public extensions::ShellContentRendererClient {
public:
AthenaContentRendererClient() {}
- virtual ~AthenaContentRendererClient() {}
+ ~AthenaContentRendererClient() override {}
// content::ContentRendererClient:
virtual void RenderFrameCreated(content::RenderFrame* render_frame) override {
@@ -162,7 +162,7 @@ class AthenaContentRendererClient
class AthenaMainDelegate : public extensions::ShellMainDelegate {
public:
AthenaMainDelegate() {}
- virtual ~AthenaMainDelegate() {}
+ ~AthenaMainDelegate() override {}
private:
// extensions::ShellMainDelegate:
« no previous file with comments | « athena/main/athena_launcher.cc ('k') | athena/main/athena_renderer_pdf_helper.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698