OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:WorkerLocalFileSystem
(Results
1 - 9
of
9
) sorted by null
/external/chromium_org/third_party/WebKit/Source/modules/filesystem/
WorkerLocalFileSystem.cpp
32
#include "modules/filesystem/
WorkerLocalFileSystem
.h"
40
PassOwnPtr<
WorkerLocalFileSystem
>
WorkerLocalFileSystem
::create(PassOwnPtr<FileSystemClient> client)
42
return adoptPtr(new
WorkerLocalFileSystem
(client));
45
const char*
WorkerLocalFileSystem
::supplementName()
47
return "
WorkerLocalFileSystem
";
50
WorkerLocalFileSystem
*
WorkerLocalFileSystem
::from(ScriptExecutionContext* context)
52
return static_cast<
WorkerLocalFileSystem
*>(Supplement<WorkerClients>::from(toWorkerGlobalScope(context)->clients(), supplementName()));
55
WorkerLocalFileSystem
::~WorkerLocalFileSystem(
[
all
...]
WorkerLocalFileSystem.h
40
class
WorkerLocalFileSystem
: public LocalFileSystemBase, public Supplement<WorkerClients> {
42
static PassOwnPtr<
WorkerLocalFileSystem
> create(PassOwnPtr<FileSystemClient>);
44
static
WorkerLocalFileSystem
* from(ScriptExecutionContext*);
45
virtual ~
WorkerLocalFileSystem
();
48
explicit
WorkerLocalFileSystem
(PassOwnPtr<FileSystemClient>);
WorkerGlobalScopeFileSystem.cpp
45
#include "modules/filesystem/
WorkerLocalFileSystem
.h"
64
WorkerLocalFileSystem
::from(worker)->requestFileSystem(worker, fileSystemType, size, FileSystemCallbacks::create(successCallback, errorCallback, worker, fileSystemType), AsynchronousFileSystem);
85
WorkerLocalFileSystem
::from(worker)->requestFileSystem(worker, fileSystemType, size, callbacks.release(), SynchronousFileSystem);
105
WorkerLocalFileSystem
::from(worker)->readFileSystem(worker, type, ResolveURICallbacks::create(successCallback, errorCallback, worker, type, filePath));
125
WorkerLocalFileSystem
::from(worker)->readFileSystem(worker, type, FileSystemCallbacks::create(readFileSystemHelper.successCallback(), readFileSystemHelper.errorCallback(), worker, type), SynchronousFileSystem);
/external/chromium_org/third_party/WebKit/Source/modules/
modules.target.darwin-arm.mk
85
third_party/WebKit/Source/modules/filesystem/
WorkerLocalFileSystem
.cpp \
modules.target.darwin-mips.mk
85
third_party/WebKit/Source/modules/filesystem/
WorkerLocalFileSystem
.cpp \
modules.target.darwin-x86.mk
85
third_party/WebKit/Source/modules/filesystem/
WorkerLocalFileSystem
.cpp \
modules.target.linux-arm.mk
85
third_party/WebKit/Source/modules/filesystem/
WorkerLocalFileSystem
.cpp \
modules.target.linux-mips.mk
85
third_party/WebKit/Source/modules/filesystem/
WorkerLocalFileSystem
.cpp \
modules.target.linux-x86.mk
85
third_party/WebKit/Source/modules/filesystem/
WorkerLocalFileSystem
.cpp \
Completed in 61 milliseconds