diff options
author | kinuko@chromium.org <kinuko@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-02-14 05:15:53 +0000 |
---|---|---|
committer | kinuko@chromium.org <kinuko@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-02-14 05:15:53 +0000 |
commit | 397281fdb6003ab5b86ead542a46e3d82aa2be1f (patch) | |
tree | 6d7a2d27edfb8b3790dd4a199d2e32283206fcce /webkit/tools/test_shell/simple_file_system.h | |
parent | c10878accf5f6c12c471d77d20b32ef3e84f5693 (diff) | |
download | chromium_src-397281fdb6003ab5b86ead542a46e3d82aa2be1f.zip chromium_src-397281fdb6003ab5b86ead542a46e3d82aa2be1f.tar.gz chromium_src-397281fdb6003ab5b86ead542a46e3d82aa2be1f.tar.bz2 |
Cleanup SandboxedFileSystem* and merge them into FileSystem* for simplicity.
Based on our rough discussion over emails, I just went ahead and did the cleanup.
BUG=none
TEST=none
Review URL: http://codereview.chromium.org/6471018
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@74786 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/tools/test_shell/simple_file_system.h')
-rw-r--r-- | webkit/tools/test_shell/simple_file_system.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/webkit/tools/test_shell/simple_file_system.h b/webkit/tools/test_shell/simple_file_system.h index ba988fd27..f6c0c65 100644 --- a/webkit/tools/test_shell/simple_file_system.h +++ b/webkit/tools/test_shell/simple_file_system.h @@ -19,8 +19,8 @@ class WebFrame; } namespace fileapi { -class SandboxedFileSystemContext; -class SandboxedFileSystemOperation; +class FileSystemContext; +class FileSystemOperation; } class SimpleFileSystem @@ -66,13 +66,13 @@ class SimpleFileSystem private: // Helpers. - fileapi::SandboxedFileSystemOperation* GetNewOperation( + fileapi::FileSystemOperation* GetNewOperation( WebKit::WebFileSystemCallbacks* callbacks); // A temporary directory for FileSystem API. ScopedTempDir file_system_dir_; - scoped_refptr<fileapi::SandboxedFileSystemContext> sandboxed_context_; + scoped_refptr<fileapi::FileSystemContext> file_system_context_; DISALLOW_COPY_AND_ASSIGN(SimpleFileSystem); }; |