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

Unified Diff: chrome/browser/profiles/off_the_record_profile_impl_unittest.cc

Issue 684613002: Standardize usage of virtual/override/final specifiers. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix bad indent 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: chrome/browser/profiles/off_the_record_profile_impl_unittest.cc
diff --git a/chrome/browser/profiles/off_the_record_profile_impl_unittest.cc b/chrome/browser/profiles/off_the_record_profile_impl_unittest.cc
index 4040a71aab7e9904ea213f57892fb46e0edb0ee5..86184c2420e86ea1a096238d03c82ffc579ba00e 100644
--- a/chrome/browser/profiles/off_the_record_profile_impl_unittest.cc
+++ b/chrome/browser/profiles/off_the_record_profile_impl_unittest.cc
@@ -79,10 +79,10 @@ class OffTheRecordProfileImplTest : public BrowserWithTestWindowTest {
protected:
OffTheRecordProfileImplTest() {}
- virtual ~OffTheRecordProfileImplTest() {}
+ ~OffTheRecordProfileImplTest() override {}
// testing::Test overrides:
- virtual void SetUp() override {
+ void SetUp() override {
profile_manager_.reset(new TestingProfileManager(browser_process()));
ASSERT_TRUE(profile_manager_->SetUp());
@@ -93,7 +93,7 @@ class OffTheRecordProfileImplTest : public BrowserWithTestWindowTest {
BrowserWithTestWindowTest::SetUp();
}
- virtual void TearDown() override {
+ void TearDown() override {
BrowserWithTestWindowTest::TearDown();
testing_io_thread_state_.reset();

Powered by Google App Engine
This is Rietveld 408576698