summaryrefslogtreecommitdiffstats
path: root/webkit/browser/fileapi/sandbox_file_system_backend_unittest.cc
diff options
context:
space:
mode:
authorbrettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-07-15 20:18:09 +0000
committerbrettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-07-15 20:18:09 +0000
commitdcd16611096dcc5e7651763ff888135e0fb305fc (patch)
treefe1f69c236a92bd701bad04a6ccc1d30c08c6217 /webkit/browser/fileapi/sandbox_file_system_backend_unittest.cc
parent6dd1c54f48283e9c61b097b59feecf8d221e123b (diff)
downloadchromium_src-dcd16611096dcc5e7651763ff888135e0fb305fc.zip
chromium_src-dcd16611096dcc5e7651763ff888135e0fb305fc.tar.gz
chromium_src-dcd16611096dcc5e7651763ff888135e0fb305fc.tar.bz2
Move PathIsWritable, DirectoryExists, ContentsEqual, and TextContentsEqual to the base namespace.
TBR=sky Review URL: https://codereview.chromium.org/19052005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@211675 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/browser/fileapi/sandbox_file_system_backend_unittest.cc')
-rw-r--r--webkit/browser/fileapi/sandbox_file_system_backend_unittest.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/webkit/browser/fileapi/sandbox_file_system_backend_unittest.cc b/webkit/browser/fileapi/sandbox_file_system_backend_unittest.cc
index 2794df3..373e684 100644
--- a/webkit/browser/fileapi/sandbox_file_system_backend_unittest.cc
+++ b/webkit/browser/fileapi/sandbox_file_system_backend_unittest.cc
@@ -105,7 +105,7 @@ class SandboxFileSystemBackendTest : public testing::Test {
base::FilePath target = backend_->
GetBaseDirectoryForOriginAndType(origin, type, true);
ASSERT_TRUE(!target.empty());
- ASSERT_TRUE(file_util::DirectoryExists(target));
+ ASSERT_TRUE(base::DirectoryExists(target));
}
bool GetRootPath(const GURL& origin_url,
@@ -255,7 +255,7 @@ TEST_F(SandboxFileSystemBackendTest, GetRootPathCreateAndExamine) {
base::FilePath expected = file_system_path().AppendASCII(
kRootPathTestCases[i].expected_path);
EXPECT_EQ(expected.value(), root_path.value());
- EXPECT_TRUE(file_util::DirectoryExists(root_path));
+ EXPECT_TRUE(base::DirectoryExists(root_path));
ASSERT_TRUE(returned_root_path.size() > i);
returned_root_path[i] = root_path;
}
@@ -353,7 +353,7 @@ TEST_F(SandboxFileSystemBackendTest, GetRootPathFileURIWithAllowFlag) {
base::FilePath expected = file_system_path().AppendASCII(
kRootPathFileURITestCases[i].expected_path);
EXPECT_EQ(expected.value(), root_path.value());
- EXPECT_TRUE(file_util::DirectoryExists(root_path));
+ EXPECT_TRUE(base::DirectoryExists(root_path));
}
}