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

Unified Diff: content/browser/accessibility/dump_accessibility_tree_browsertest.cc

Issue 18286004: Move PathExists to base namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 5 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/accessibility/dump_accessibility_tree_browsertest.cc
diff --git a/content/browser/accessibility/dump_accessibility_tree_browsertest.cc b/content/browser/accessibility/dump_accessibility_tree_browsertest.cc
index 073e9ef761624f6236c849f869be9a790ef06364..7219be6cb8c6b7d0d7114ba3f3617a0c101aa182 100644
--- a/content/browser/accessibility/dump_accessibility_tree_browsertest.cc
+++ b/content/browser/accessibility/dump_accessibility_tree_browsertest.cc
@@ -130,7 +130,7 @@ void DumpAccessibilityTreeTest::RunTest(
ASSERT_TRUE(PathService::Get(DIR_TEST_DATA, &dir_test_data));
base::FilePath test_path(
dir_test_data.Append(FILE_PATH_LITERAL("accessibility")));
- ASSERT_TRUE(file_util::PathExists(test_path))
+ ASSERT_TRUE(base::PathExists(test_path))
<< test_path.LossyDisplayName();
base::FilePath html_file = test_path.Append(base::FilePath(file_path));
@@ -216,7 +216,7 @@ void DumpAccessibilityTreeTest::RunTest(
printf("%s\n", actual_contents.c_str());
}
- if (!file_util::PathExists(expected_file)) {
+ if (!base::PathExists(expected_file)) {
base::FilePath actual_file =
base::FilePath(html_file.RemoveExtension().value() +
AccessibilityTreeFormatter::GetActualFileSuffix());

Powered by Google App Engine
This is Rietveld 408576698