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

Side by Side Diff: base/files/file_path_unittest.cc

Issue 611153004: replace OVERRIDE and FINAL with override and final in base/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: CC_ -> BASE_ 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 unified diff | Download patch
« no previous file with comments | « base/file_version_info_win.h ('k') | base/files/file_path_watcher_browsertest.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "base/basictypes.h" 5 #include "base/basictypes.h"
6 #include "base/files/file_path.h" 6 #include "base/files/file_path.h"
7 #include "base/strings/utf_string_conversions.h" 7 #include "base/strings/utf_string_conversions.h"
8 #include "testing/gtest/include/gtest/gtest.h" 8 #include "testing/gtest/include/gtest/gtest.h"
9 #include "testing/platform_test.h" 9 #include "testing/platform_test.h"
10 10
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
43 43
44 struct UTF8TestData { 44 struct UTF8TestData {
45 const FilePath::CharType* native; 45 const FilePath::CharType* native;
46 const char* utf8; 46 const char* utf8;
47 }; 47 };
48 48
49 // file_util winds up using autoreleased objects on the Mac, so this needs 49 // file_util winds up using autoreleased objects on the Mac, so this needs
50 // to be a PlatformTest 50 // to be a PlatformTest
51 class FilePathTest : public PlatformTest { 51 class FilePathTest : public PlatformTest {
52 protected: 52 protected:
53 virtual void SetUp() OVERRIDE { 53 virtual void SetUp() override {
54 PlatformTest::SetUp(); 54 PlatformTest::SetUp();
55 } 55 }
56 virtual void TearDown() OVERRIDE { 56 virtual void TearDown() override {
57 PlatformTest::TearDown(); 57 PlatformTest::TearDown();
58 } 58 }
59 }; 59 };
60 60
61 TEST_F(FilePathTest, DirName) { 61 TEST_F(FilePathTest, DirName) {
62 const struct UnaryTestData cases[] = { 62 const struct UnaryTestData cases[] = {
63 { FPL(""), FPL(".") }, 63 { FPL(""), FPL(".") },
64 { FPL("aa"), FPL(".") }, 64 { FPL("aa"), FPL(".") },
65 { FPL("/aa/bb"), FPL("/aa") }, 65 { FPL("/aa/bb"), FPL("/aa") },
66 { FPL("/aa/bb/"), FPL("/aa") }, 66 { FPL("/aa/bb/"), FPL("/aa") },
(...skipping 1207 matching lines...) Expand 10 before | Expand all | Expand 10 after
1274 for (size_t i = 0; i < arraysize(cases); ++i) { 1274 for (size_t i = 0; i < arraysize(cases); ++i) {
1275 FilePath input(cases[i].input); 1275 FilePath input(cases[i].input);
1276 bool observed = input.IsContentUri(); 1276 bool observed = input.IsContentUri();
1277 EXPECT_EQ(cases[i].expected, observed) << 1277 EXPECT_EQ(cases[i].expected, observed) <<
1278 "i: " << i << ", input: " << input.value(); 1278 "i: " << i << ", input: " << input.value();
1279 } 1279 }
1280 } 1280 }
1281 #endif 1281 #endif
1282 1282
1283 } // namespace base 1283 } // namespace base
OLDNEW
« no previous file with comments | « base/file_version_info_win.h ('k') | base/files/file_path_watcher_browsertest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698