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

Unified Diff: athena/content/app_activity_browsertest.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/content/app_activity.h ('k') | athena/content/app_activity_proxy.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: athena/content/app_activity_browsertest.cc
diff --git a/athena/content/app_activity_browsertest.cc b/athena/content/app_activity_browsertest.cc
index 22a4c1abbe78c142a17b52c7c9ea9a6a1e800a95..17cc893d5c6f8350c2ede3fbe100a30575c14211 100644
--- a/athena/content/app_activity_browsertest.cc
+++ b/athena/content/app_activity_browsertest.cc
@@ -23,15 +23,15 @@ const char kTestUrl[] = "chrome:about";
class AppActivityBrowserTest : public AthenaAppBrowserTest {
public:
AppActivityBrowserTest() {}
- virtual ~AppActivityBrowserTest() {}
+ ~AppActivityBrowserTest() override {}
// AthenaAppBrowserTest:
- virtual void SetUpOnMainThread() override {
+ void SetUpOnMainThread() override {
tracker_.reset(new ActivityLifetimeTracker);
AthenaAppBrowserTest::SetUpOnMainThread();
}
- virtual void TearDownOnMainThread() override {
+ void TearDownOnMainThread() override {
tracker_.reset();
AthenaAppBrowserTest::TearDownOnMainThread();
}
« no previous file with comments | « athena/content/app_activity.h ('k') | athena/content/app_activity_proxy.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698