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

Unified Diff: webkit/fileapi/local_file_util.h

Issue 15371005: Move browser-specific FileAPI code from webkit/fileapi to webkit/browser/fileapi (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 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/local_file_system_test_helper.cc ('k') | webkit/fileapi/local_file_util.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/fileapi/local_file_util.h
diff --git a/webkit/fileapi/local_file_util.h b/webkit/fileapi/local_file_util.h
deleted file mode 100644
index 0321f2c642adb06456e1dfd865fc8730779025a3..0000000000000000000000000000000000000000
--- a/webkit/fileapi/local_file_util.h
+++ /dev/null
@@ -1,104 +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_LOCAL_FILE_UTIL_H_
-#define WEBKIT_FILEAPI_LOCAL_FILE_UTIL_H_
-
-#include "base/compiler_specific.h"
-#include "base/memory/scoped_ptr.h"
-#include "base/platform_file.h"
-#include "webkit/fileapi/file_system_file_util.h"
-#include "webkit/storage/webkit_storage_export.h"
-
-namespace base {
-class FilePath;
-class Time;
-}
-
-class GURL;
-
-namespace fileapi {
-
-class FileSystemOperationContext;
-class FileSystemURL;
-
-// An instance of this class is created and owned by *MountPointProvider.
-class WEBKIT_STORAGE_EXPORT_PRIVATE LocalFileUtil : public FileSystemFileUtil {
- public:
- LocalFileUtil();
- virtual ~LocalFileUtil();
-
- virtual base::PlatformFileError CreateOrOpen(
- FileSystemOperationContext* context,
- const FileSystemURL& url,
- int file_flags,
- base::PlatformFile* file_handle,
- bool* created) OVERRIDE;
- virtual base::PlatformFileError Close(
- FileSystemOperationContext* context,
- base::PlatformFile file) OVERRIDE;
- virtual base::PlatformFileError EnsureFileExists(
- FileSystemOperationContext* context,
- const FileSystemURL& url, bool* created) OVERRIDE;
- virtual base::PlatformFileError CreateDirectory(
- FileSystemOperationContext* context,
- const FileSystemURL& url,
- bool exclusive,
- bool recursive) OVERRIDE;
- virtual base::PlatformFileError GetFileInfo(
- FileSystemOperationContext* context,
- const FileSystemURL& url,
- base::PlatformFileInfo* file_info,
- base::FilePath* platform_file) OVERRIDE;
- virtual scoped_ptr<AbstractFileEnumerator> CreateFileEnumerator(
- FileSystemOperationContext* context,
- const FileSystemURL& root_url) OVERRIDE;
- virtual base::PlatformFileError GetLocalFilePath(
- FileSystemOperationContext* context,
- const FileSystemURL& file_system_url,
- base::FilePath* local_file_path) OVERRIDE;
- virtual base::PlatformFileError Touch(
- FileSystemOperationContext* context,
- const FileSystemURL& url,
- const base::Time& last_access_time,
- const base::Time& last_modified_time) OVERRIDE;
- virtual base::PlatformFileError Truncate(
- FileSystemOperationContext* context,
- const FileSystemURL& url,
- int64 length) OVERRIDE;
- virtual base::PlatformFileError CopyOrMoveFile(
- FileSystemOperationContext* context,
- const FileSystemURL& src_url,
- const FileSystemURL& dest_url,
- bool copy) OVERRIDE;
- virtual base::PlatformFileError CopyInForeignFile(
- FileSystemOperationContext* context,
- const base::FilePath& src_file_path,
- const FileSystemURL& dest_url) OVERRIDE;
- virtual base::PlatformFileError DeleteFile(
- FileSystemOperationContext* context,
- const FileSystemURL& url) OVERRIDE;
- virtual base::PlatformFileError DeleteDirectory(
- FileSystemOperationContext* context,
- const FileSystemURL& url) OVERRIDE;
- virtual webkit_blob::ScopedFile CreateSnapshotFile(
- FileSystemOperationContext* context,
- const FileSystemURL& url,
- base::PlatformFileError* error,
- base::PlatformFileInfo* file_info,
- base::FilePath* platform_path) OVERRIDE;
-
- private:
- // Given the filesystem url, produces a real, full local path for the
- // underlying filesystem (which is usually the native filesystem).
- FileSystemURL GetLocalPath(
- FileSystemOperationContext* context,
- const FileSystemURL& url);
-
- DISALLOW_COPY_AND_ASSIGN(LocalFileUtil);
-};
-
-} // namespace fileapi
-
-#endif // WEBKIT_FILEAPI_LOCAL_FILE_UTIL_H_
« no previous file with comments | « webkit/fileapi/local_file_system_test_helper.cc ('k') | webkit/fileapi/local_file_util.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698