Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(221)

Unified Diff: webkit/fileapi/file_system_quota_client_unittest.cc

Issue 9004019: Cleanup: Removing FileSystemPathManager (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebased Created 8 years, 12 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « webkit/fileapi/file_system_quota_client.cc ('k') | webkit/fileapi/file_system_quota_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/fileapi/file_system_quota_client_unittest.cc
diff --git a/webkit/fileapi/file_system_quota_client_unittest.cc b/webkit/fileapi/file_system_quota_client_unittest.cc
index 39e53147425c29ef5ce99f0fd658399fa1614919..8b18d91be49a91273a2b0528cbd0ec56a75800d5 100644
--- a/webkit/fileapi/file_system_quota_client_unittest.cc
+++ b/webkit/fileapi/file_system_quota_client_unittest.cc
@@ -17,9 +17,10 @@
#include "webkit/fileapi/file_system_types.h"
#include "webkit/fileapi/file_system_usage_cache.h"
#include "webkit/fileapi/file_system_util.h"
+#include "webkit/fileapi/mock_file_system_options.h"
#include "webkit/fileapi/obfuscated_file_util.h"
-#include "webkit/fileapi/sandbox_mount_point_provider.h"
#include "webkit/fileapi/quota_file_util.h"
+#include "webkit/fileapi/sandbox_mount_point_provider.h"
#include "webkit/quota/quota_types.h"
namespace fileapi {
@@ -33,13 +34,6 @@ const char kDummyURL3[] = "http://www.bleh";
const quota::StorageType kTemporary = quota::kStorageTypeTemporary;
const quota::StorageType kPersistent = quota::kStorageTypePersistent;
-class MockFileSystemPathManager : public FileSystemPathManager {
- public:
- explicit MockFileSystemPathManager(const FilePath& filesystem_path)
- : FileSystemPathManager(base::MessageLoopProxy::current(),
- filesystem_path, NULL, false, true) {}
-};
-
} // namespace
class FileSystemQuotaClientTest : public testing::Test {
@@ -57,8 +51,8 @@ class FileSystemQuotaClientTest : public testing::Test {
base::MessageLoopProxy::current(),
base::MessageLoopProxy::current(),
NULL, NULL,
- FilePath(), false /* is_incognito */, true /* allow_file_access */,
- new MockFileSystemPathManager(data_dir_.path()));
+ data_dir_.path(),
+ CreateDisallowFileAccessOptions());
}
struct TestFile {
@@ -129,7 +123,7 @@ class FileSystemQuotaClientTest : public testing::Test {
quota::StorageType type) {
// Note: this test assumes sandbox_provider impl is used for
// temporary and persistent filesystem.
- return file_system_context_->path_manager()->sandbox_provider()->
+ return file_system_context_->sandbox_provider()->
GetBaseDirectoryForOriginAndType(
GURL(origin_url), QuotaStorageTypeToFileSystemType(type), true);
}
@@ -150,7 +144,7 @@ class FileSystemQuotaClientTest : public testing::Test {
bool CreateFileSystemDirectory(const FilePath& path,
const std::string& origin_url,
quota::StorageType type) {
- FileSystemFileUtil* file_util = file_system_context_->path_manager()->
+ FileSystemFileUtil* file_util = file_system_context_->
GetFileUtil(QuotaStorageTypeToFileSystemType(type));
scoped_ptr<FileSystemOperationContext> context(
@@ -170,7 +164,7 @@ class FileSystemQuotaClientTest : public testing::Test {
if (path.empty())
return false;
- FileSystemFileUtil* file_util = file_system_context_->path_manager()->
+ FileSystemFileUtil* file_util = file_system_context_->
sandbox_provider()->GetFileUtil();
scoped_ptr<FileSystemOperationContext> context(
« no previous file with comments | « webkit/fileapi/file_system_quota_client.cc ('k') | webkit/fileapi/file_system_quota_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698