diff options
author | calvinlo@chromium.org <calvinlo@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-02-27 10:59:13 +0000 |
---|---|---|
committer | calvinlo@chromium.org <calvinlo@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-02-27 10:59:13 +0000 |
commit | 6cd128d23c9c576ce449fcc3022ce58876601f49 (patch) | |
tree | b785c7fa93e4c43588ba802a65673eb47d11b196 /webkit/fileapi/syncable/syncable_file_system_operation.cc | |
parent | 933df47c743604207d9d0836dff94a20eddd24f6 (diff) | |
download | chromium_src-6cd128d23c9c576ce449fcc3022ce58876601f49.zip chromium_src-6cd128d23c9c576ce449fcc3022ce58876601f49.tar.gz chromium_src-6cd128d23c9c576ce449fcc3022ce58876601f49.tar.bz2 |
Final patch to migrate all files under webkit/fileapi/syncable from fileapi namespace to sync_file_system namespace.
BUG=174870
Review URL: https://codereview.chromium.org/12313144
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@184928 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/fileapi/syncable/syncable_file_system_operation.cc')
-rw-r--r-- | webkit/fileapi/syncable/syncable_file_system_operation.cc | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/webkit/fileapi/syncable/syncable_file_system_operation.cc b/webkit/fileapi/syncable/syncable_file_system_operation.cc index e2145b5..3d90af7 100644 --- a/webkit/fileapi/syncable/syncable_file_system_operation.cc +++ b/webkit/fileapi/syncable/syncable_file_system_operation.cc @@ -13,7 +13,10 @@ #include "webkit/fileapi/syncable/local_file_sync_context.h" #include "webkit/fileapi/syncable/syncable_file_operation_runner.h" -namespace fileapi { +using fileapi::FileSystemURL; +using fileapi::LocalFileSystemOperation; + +namespace sync_file_system { namespace { @@ -340,8 +343,8 @@ void SyncableFileSystemOperation::CreateSnapshotFile( } SyncableFileSystemOperation::SyncableFileSystemOperation( - FileSystemContext* file_system_context, - FileSystemOperation* file_system_operation) { + fileapi::FileSystemContext* file_system_context, + fileapi::FileSystemOperation* file_system_operation) { DCHECK(file_system_context); DCHECK(file_system_operation); file_system_operation_ = file_system_operation->AsLocalFileSystemOperation(); @@ -398,4 +401,4 @@ void SyncableFileSystemOperation::Destruct() { delete this; } -} // namespace fileapi +} // namespace sync_file_system |