OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:FileSystemBackend
(Results
1 - 3
of
3
) sorted by null
/external/chromium_org/webkit/browser/fileapi/
file_system_backend.h
39
// NOTE: when you implement a new
FileSystemBackend
for your own
42
class WEBKIT_STORAGE_BROWSER_EXPORT
FileSystemBackend
{
49
virtual ~
FileSystemBackend
() {}
122
class ExternalFileSystemBackend : public
FileSystemBackend
{
/external/chromium_org/chrome/browser/chromeos/fileapi/
file_system_backend.h
34
//
FileSystemBackend
is a Chrome OS specific implementation of
66
class
FileSystemBackend
: public fileapi::ExternalFileSystemBackend {
68
using fileapi::
FileSystemBackend
::OpenFileSystemCallback;
70
//
FileSystemBackend
will take an ownership of a |mount_points|
72
// pointer and it should outlive
FileSystemBackend
instance.
74
FileSystemBackend
(
79
virtual ~
FileSystemBackend
();
90
// fileapi::
FileSystemBackend
overrides.
155
// all
FileSystemBackend
instances, so raw pointer is safe.
158
DISALLOW_COPY_AND_ASSIGN(
FileSystemBackend
);
[
all
...]
file_system_backend.cc
35
bool
FileSystemBackend
::CanHandleURL(const fileapi::FileSystemURL& url) {
43
FileSystemBackend
::
FileSystemBackend
(
56
FileSystemBackend
::~
FileSystemBackend
() {
59
void
FileSystemBackend
::AddSystemMountPoints() {
80
bool
FileSystemBackend
::CanHandleType(fileapi::FileSystemType type) const {
93
void
FileSystemBackend
::Initialize(fileapi::FileSystemContext* context) {
96
void
FileSystemBackend
::OpenFileSystem(
107
fileapi::FileSystemQuotaUtil*
FileSystemBackend
::GetQuotaUtil()
[
all
...]
Completed in 46 milliseconds