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-05-24 09:45:27 +0000
committerkinuko@chromium.org <kinuko@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-05-24 09:45:27 +0000
commit1c98fddccecfa323f49bfe80c1c387be22494613 (patch)
tree959e7e96f454d58d4c4aae8493fe5c4828f2afe9 /webkit/fileapi/syncable/syncable_file_system_unittest.cc
parent5324b65c7728a8f94b8276414b1f0d644640faa6 (diff)
downloadchromium_src-1c98fddccecfa323f49bfe80c1c387be22494613.zip
chromium_src-1c98fddccecfa323f49bfe80c1c387be22494613.tar.gz
chromium_src-1c98fddccecfa323f49bfe80c1c387be22494613.tar.bz2
Cleanup: Rename LocalFileSystemTestOriginHelper (aka test_helper_) to SandboxFileSystemTestHelper
Now LocalFileSystemTestOriginHelper is used only for Sandbox FileSystems, I'd like to rename this to more specific, clear name (as the previous name was too vague and unclear). BUG=241701,240658 TEST=existing tests TBR=avi@chromium.org, nhiroki@chromium.org, tzik@chromium.org Review URL: https://codereview.chromium.org/15810004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@202037 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.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/webkit/fileapi/syncable/syncable_file_system_unittest.cc b/webkit/fileapi/syncable/syncable_file_system_unittest.cc
index 88b4e6e..74c98cb 100644
--- a/webkit/fileapi/syncable/syncable_file_system_unittest.cc
+++ b/webkit/fileapi/syncable/syncable_file_system_unittest.cc
@@ -11,7 +11,7 @@
#include "webkit/fileapi/file_system_types.h"
#include "webkit/fileapi/isolated_context.h"
#include "webkit/fileapi/local_file_system_operation.h"
-#include "webkit/fileapi/local_file_system_test_helper.h"
+#include "webkit/fileapi/sandbox_file_system_test_helper.h"
#include "webkit/fileapi/syncable/canned_syncable_file_system.h"
#include "webkit/fileapi/syncable/local_file_change_tracker.h"
#include "webkit/fileapi/syncable/local_file_sync_context.h"
@@ -24,7 +24,7 @@ using fileapi::FileSystemContext;
using fileapi::FileSystemOperationContext;
using fileapi::FileSystemURL;
using fileapi::FileSystemURLSet;
-using fileapi::LocalFileSystemTestOriginHelper;
+using fileapi::SandboxFileSystemTestHelper;
using quota::QuotaManager;
using quota::QuotaStatusCode;
@@ -248,7 +248,7 @@ TEST_F(SyncableFileSystemTest, DisableDirectoryOperations) {
file_system_.CreateDirectory(URL("dir")));
// Set up another (non-syncable) local file system.
- LocalFileSystemTestOriginHelper other_file_system_(
+ SandboxFileSystemTestHelper other_file_system_(
GURL("http://foo.com/"), fileapi::kFileSystemTypeTemporary);
other_file_system_.SetUp(file_system_.file_system_context());