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

Unified Diff: content/browser/frame_host/navigation_entry_impl_unittest.cc

Issue 678073006: Standardize usage of virtual/override/final specifiers. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix bogus formatting 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/browser/frame_host/navigation_entry_impl_unittest.cc
diff --git a/content/browser/frame_host/navigation_entry_impl_unittest.cc b/content/browser/frame_host/navigation_entry_impl_unittest.cc
index 8dae01b222228262f265a21e72aeaec7a177a68c..663386a1316399e6d786735f20df8f4b8bb51d8c 100644
--- a/content/browser/frame_host/navigation_entry_impl_unittest.cc
+++ b/content/browser/frame_host/navigation_entry_impl_unittest.cc
@@ -20,7 +20,7 @@ class NavigationEntryTest : public testing::Test {
NavigationEntryTest() : instance_(NULL) {
}
- virtual void SetUp() {
+ void SetUp() override {
entry1_.reset(new NavigationEntryImpl);
#if !defined(OS_IOS)
@@ -35,8 +35,7 @@ class NavigationEntryTest : public testing::Test {
false));
}
- virtual void TearDown() {
- }
+ void TearDown() override {}
protected:
scoped_ptr<NavigationEntryImpl> entry1_;

Powered by Google App Engine
This is Rietveld 408576698