summaryrefslogtreecommitdiffstats
path: root/webkit/fileapi/syncable/syncable_file_system_unittest.cc
diff options
context:
space:
mode:
Diffstat (limited to 'webkit/fileapi/syncable/syncable_file_system_unittest.cc')
-rw-r--r--webkit/fileapi/syncable/syncable_file_system_unittest.cc15
1 files changed, 9 insertions, 6 deletions
diff --git a/webkit/fileapi/syncable/syncable_file_system_unittest.cc b/webkit/fileapi/syncable/syncable_file_system_unittest.cc
index ac4e001..991c04a 100644
--- a/webkit/fileapi/syncable/syncable_file_system_unittest.cc
+++ b/webkit/fileapi/syncable/syncable_file_system_unittest.cc
@@ -18,12 +18,15 @@
#include "webkit/quota/quota_types.h"
using base::PlatformFileError;
+using fileapi::FileSystemContext;
+using fileapi::FileSystemOperationContext;
+using fileapi::FileSystemURL;
+using fileapi::FileSystemURLSet;
+using fileapi::LocalFileSystemTestOriginHelper;
using quota::QuotaManager;
using quota::QuotaStatusCode;
-using sync_file_system::FileChange;
-using sync_file_system::FileChangeList;
-namespace fileapi {
+namespace sync_file_system {
class SyncableFileSystemTest : public testing::Test {
public:
@@ -243,8 +246,8 @@ TEST_F(SyncableFileSystemTest, DisableDirectoryOperations) {
file_system_.CreateDirectory(URL("dir")));
// Set up another (non-syncable) local file system.
- LocalFileSystemTestOriginHelper other_file_system_(GURL("http://foo.com/"),
- kFileSystemTypeTemporary);
+ LocalFileSystemTestOriginHelper other_file_system_(
+ GURL("http://foo.com/"), fileapi::kFileSystemTypeTemporary);
other_file_system_.SetUp(file_system_.file_system_context());
// Create directory '/a' and file '/a/b' in the other file system.
@@ -276,4 +279,4 @@ TEST_F(SyncableFileSystemTest, DisableDirectoryOperations) {
other_file_system_.TearDown();
}
-} // namespace fileapi
+} // namespace sync_file_system