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

Unified Diff: base/files/file_path_unittest.cc

Issue 614103004: replace 'virtual ... OVERRIDE' with '... override' (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: process base/ Created 6 years, 3 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: base/files/file_path_unittest.cc
diff --git a/base/files/file_path_unittest.cc b/base/files/file_path_unittest.cc
index fa7627c2f9be81be7394771c2d6e99dd05df47be..29ffafc0ddbb695d5f9755520ddb1347cc647a5e 100644
--- a/base/files/file_path_unittest.cc
+++ b/base/files/file_path_unittest.cc
@@ -50,12 +50,8 @@ struct UTF8TestData {
// to be a PlatformTest
class FilePathTest : public PlatformTest {
protected:
- virtual void SetUp() OVERRIDE {
- PlatformTest::SetUp();
- }
- virtual void TearDown() OVERRIDE {
- PlatformTest::TearDown();
- }
+ void SetUp() override { PlatformTest::SetUp(); }
pauljensen 2014/10/05 02:59:36 Do we want to be reformatting like this?
Mostyn Bramley-Moore 2014/10/05 07:26:31 No- after earlier discussion in this CL, we chose
+ void TearDown() override { PlatformTest::TearDown(); }
};
TEST_F(FilePathTest, DirName) {

Powered by Google App Engine
This is Rietveld 408576698