blob: 9fcb08bc4b3f790d3b17e2471cd3e894322c5f42 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
// Copyright (c) 2011 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 STORAGE_BROWSER_DATABASE_VFS_BACKEND_H_
#define STORAGE_BROWSER_DATABASE_VFS_BACKEND_H_
#include <stdint.h>
#include "base/files/file.h"
#include "base/process/process.h"
#include "base/strings/string16.h"
#include "storage/browser/storage_browser_export.h"
namespace base {
class FilePath;
}
namespace storage {
class STORAGE_EXPORT VfsBackend {
public:
static base::File OpenFile(const base::FilePath& file_path,
int desired_flags);
static base::File OpenTempFileInDirectory(const base::FilePath& dir_path,
int desired_flags);
static int DeleteFile(const base::FilePath& file_path, bool sync_dir);
static uint32_t GetFileAttributes(const base::FilePath& file_path);
static int64_t GetFileSize(const base::FilePath& file_path);
static bool SetFileSize(const base::FilePath& file_path, int64_t size);
// Used to make decisions in the DatabaseDispatcherHost.
static bool OpenTypeIsReadWrite(int desired_flags);
private:
static bool OpenFileFlagsAreConsistent(int desired_flags);
};
} // namespace storage
#endif // STORAGE_BROWSER_DATABASE_VFS_BACKEND_H_
|