summaryrefslogtreecommitdiffstats
path: root/webkit/fileapi/syncable/syncable_file_system_unittest.cc
diff options
context:
space:
mode:
authorkinuko@chromium.org <kinuko@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-01-23 04:24:36 +0000
committerkinuko@chromium.org <kinuko@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-01-23 04:24:36 +0000
commit4f056a870937b82f28bbde8ff4172940a3ea87a4 (patch)
treebb92dabc90be973de5353352949d6ac8de94b730 /webkit/fileapi/syncable/syncable_file_system_unittest.cc
parentdbeac5a7395be2df51590b4d8f538759bef857f7 (diff)
downloadchromium_src-4f056a870937b82f28bbde8ff4172940a3ea87a4.zip
chromium_src-4f056a870937b82f28bbde8ff4172940a3ea87a4.tar.gz
chromium_src-4f056a870937b82f28bbde8ff4172940a3ea87a4.tar.bz2
Cleanup: Remove FileUtil overriding hack for testing in LocalFileSystemOperation
We needed the hack back then but it looks we no longer need it. (Now we can always get an appropriate FileUtil for a given filesystem type by calling MountPointProvider::GetFileUtil) BUG=none TEST=existing tests (content_unittests:*File*) Review URL: https://codereview.chromium.org/11953023 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@178244 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/fileapi/syncable/syncable_file_system_unittest.cc')
-rw-r--r--webkit/fileapi/syncable/syncable_file_system_unittest.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/webkit/fileapi/syncable/syncable_file_system_unittest.cc b/webkit/fileapi/syncable/syncable_file_system_unittest.cc
index 1ba0ef6..7c14aac 100644
--- a/webkit/fileapi/syncable/syncable_file_system_unittest.cc
+++ b/webkit/fileapi/syncable/syncable_file_system_unittest.cc
@@ -243,7 +243,7 @@ TEST_F(SyncableFileSystemTest, DisableDirectoryOperations) {
// Set up another (non-syncable) local file system.
LocalFileSystemTestOriginHelper other_file_system_(GURL("http://foo.com/"),
kFileSystemTypeTemporary);
- other_file_system_.SetUp(file_system_.file_system_context(), NULL);
+ other_file_system_.SetUp(file_system_.file_system_context());
// Create directory '/a' and file '/a/b' in the other file system.
const FileSystemURL kSrcDir = other_file_system_.CreateURLFromUTF8("/a");