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

Unified Diff: webkit/fileapi/sandbox_file_system_test_helper.h

Issue 15859007: Move browser-specific FileAPI code from webkit/fileapi to webkit/browser/fileapi (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: dump_file_system build fix Created 7 years, 7 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/remove_operation_delegate.cc ('k') | webkit/fileapi/sandbox_file_system_test_helper.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/fileapi/sandbox_file_system_test_helper.h
diff --git a/webkit/fileapi/sandbox_file_system_test_helper.h b/webkit/fileapi/sandbox_file_system_test_helper.h
deleted file mode 100644
index 15f9281cd5340f2b9caf0f6a03a56aa034ebe5c8..0000000000000000000000000000000000000000
--- a/webkit/fileapi/sandbox_file_system_test_helper.h
+++ /dev/null
@@ -1,100 +0,0 @@
-// Copyright (c) 2012 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#ifndef WEBKIT_FILEAPI_SANDBOX_FILE_SYSTEM_TEST_HELPER_H_
-#define WEBKIT_FILEAPI_SANDBOX_FILE_SYSTEM_TEST_HELPER_H_
-
-#include <string>
-
-#include "base/files/file_path.h"
-#include "base/memory/ref_counted.h"
-#include "googleurl/src/gurl.h"
-#include "webkit/browser/fileapi/file_system_usage_cache.h"
-#include "webkit/fileapi/file_system_types.h"
-#include "webkit/fileapi/file_system_url.h"
-#include "webkit/fileapi/file_system_util.h"
-#include "webkit/quota/quota_types.h"
-
-namespace base {
-class FilePath;
-}
-
-namespace quota {
-class QuotaManagerProxy;
-}
-
-namespace fileapi {
-
-class FileSystemContext;
-class FileSystemFileUtil;
-class FileSystemOperationContext;
-class LocalFileSystemOperation;
-
-// Filesystem test helper class that encapsulates test environment for
-// a given {origin, type} pair. This helper only works for sandboxed
-// file systems (Temporary or Persistent).
-class SandboxFileSystemTestHelper {
- public:
- SandboxFileSystemTestHelper(const GURL& origin, FileSystemType type);
- SandboxFileSystemTestHelper();
- ~SandboxFileSystemTestHelper();
-
- void SetUp(const base::FilePath& base_dir);
- // If you want to use more than one SandboxFileSystemTestHelper in
- // a single base directory, they have to share a context, so that they don't
- // have multiple databases fighting over the lock to the origin directory
- // [deep down inside ObfuscatedFileUtil].
- void SetUp(FileSystemContext* file_system_context);
- void SetUp(const base::FilePath& base_dir,
- quota::QuotaManagerProxy* quota_manager_proxy);
- void TearDown();
-
- base::FilePath GetOriginRootPath() const;
- base::FilePath GetLocalPath(const base::FilePath& path);
- base::FilePath GetLocalPathFromASCII(const std::string& path);
-
- // Returns empty path if filesystem type is neither temporary nor persistent.
- base::FilePath GetUsageCachePath() const;
-
- FileSystemURL CreateURL(const base::FilePath& path) const;
- FileSystemURL CreateURLFromUTF8(const std::string& utf8) const {
- return CreateURL(base::FilePath::FromUTF8Unsafe(utf8));
- }
-
- // This returns cached usage size returned by QuotaUtil.
- int64 GetCachedOriginUsage() const;
-
- // This doesn't work with OFSFU.
- int64 ComputeCurrentOriginUsage();
-
- int64 ComputeCurrentDirectoryDatabaseUsage() const;
-
- LocalFileSystemOperation* NewOperation();
- FileSystemOperationContext* NewOperationContext();
-
- FileSystemContext* file_system_context() const {
- return file_system_context_.get();
- }
-
- const GURL& origin() const { return origin_; }
- FileSystemType type() const { return type_; }
- quota::StorageType storage_type() const {
- return FileSystemTypeToQuotaStorageType(type_);
- }
- FileSystemFileUtil* file_util() const { return file_util_; }
- FileSystemUsageCache* usage_cache();
-
- private:
- void SetUpFileSystem();
-
- scoped_refptr<FileSystemContext> file_system_context_;
-
- const GURL origin_;
- const FileSystemType type_;
- FileSystemFileUtil* file_util_;
-};
-
-} // namespace fileapi
-
-#endif // WEBKIT_FILEAPI_SANDBOX_FILE_SYSTEM_TEST_HELPER_H_
« no previous file with comments | « webkit/fileapi/remove_operation_delegate.cc ('k') | webkit/fileapi/sandbox_file_system_test_helper.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698