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

Unified Diff: athena/extensions/athena_app_delegate_base.cc

Issue 641683003: C++11 override style change for athena (Closed) Base URL: https://chromium.googlesource.com/chromium/src@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: athena/extensions/athena_app_delegate_base.cc
diff --git a/athena/extensions/athena_app_delegate_base.cc b/athena/extensions/athena_app_delegate_base.cc
index 3c4a1e49cf56c416d342e62fb8930611dfae17be..536b98d85f1a39cd61903b384f58bc64cb27f230 100644
--- a/athena/extensions/athena_app_delegate_base.cc
+++ b/athena/extensions/athena_app_delegate_base.cc
@@ -36,10 +36,10 @@ class AthenaAppDelegateBase::NewActivityContentsDelegate
: public content::WebContentsDelegate {
public:
NewActivityContentsDelegate() {}
- virtual ~NewActivityContentsDelegate() {}
+ ~NewActivityContentsDelegate() override {}
// content::WebContentsDelegate:
- virtual content::WebContents* OpenURLFromTab(
+ content::WebContents* OpenURLFromTab(
content::WebContents* source,
const content::OpenURLParams& params) override {
if (!source)

Powered by Google App Engine
This is Rietveld 408576698