OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ResolveURICallbacks
(Results
1 - 5
of
5
) sorted by null
/external/chromium_org/third_party/WebKit/Source/modules/filesystem/
FileSystemCallbacks.h
123
class
ResolveURICallbacks
: public FileSystemCallbacksBase {
125
static PassOwnPtr<
ResolveURICallbacks
> create(PassRefPtr<EntryCallback>, PassRefPtr<ErrorCallback>, ScriptExecutionContext*, FileSystemType, const String& filePath);
129
ResolveURICallbacks
(PassRefPtr<EntryCallback>, PassRefPtr<ErrorCallback>, ScriptExecutionContext*, FileSystemType, const String& filePath);
FileSystemCallbacks.cpp
159
//
ResolveURICallbacks
--------------------------------------------------------
198
PassOwnPtr<
ResolveURICallbacks
>
ResolveURICallbacks
::create(PassRefPtr<EntryCallback> successCallback, PassRefPtr<ErrorCallback> errorCallback, ScriptExecutionContext* scriptExecutionContext, FileSystemType type, const String& filePath)
200
return adoptPtr(new
ResolveURICallbacks
(successCallback, errorCallback, scriptExecutionContext, type, filePath));
203
ResolveURICallbacks
::
ResolveURICallbacks
(PassRefPtr<EntryCallback> successCallback, PassRefPtr<ErrorCallback> errorCallback, ScriptExecutionContext* context, FileSystemType type, const String& filePath)
212
void
ResolveURICallbacks
::didOpenFileSystem(const String& name, const KURL& rootURL, PassOwnPtr<AsyncFileSystem> asyncFileSystem)
DOMWindowFileSystem.cpp
98
LocalFileSystem::from(document)->readFileSystem(document, type,
ResolveURICallbacks
::create(successCallback, errorCallback, document, type, filePath));
WorkerGlobalScopeFileSystem.cpp
105
WorkerLocalFileSystem::from(worker)->readFileSystem(worker, type,
ResolveURICallbacks
::create(successCallback, errorCallback, worker, type, filePath));
/external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorFileSystemAgent.cpp
164
OwnPtr<
ResolveURICallbacks
> fileSystemCallbacks =
ResolveURICallbacks
::create(successCallback, errorCallback, scriptExecutionContext, type, "/");
234
OwnPtr<
ResolveURICallbacks
> fileSystemCallbacks =
ResolveURICallbacks
::create(successCallback, errorCallback, scriptExecutionContext, type, path);
359
OwnPtr<
ResolveURICallbacks
> fileSystemCallbacks =
ResolveURICallbacks
::create(successCallback, errorCallback, scriptExecutionContext, type, m_path);
465
OwnPtr<
ResolveURICallbacks
> fileSystemCallbacks =
ResolveURICallbacks
::create(successCallback, errorCallback, scriptExecutionContext, type, path);
579
OwnPtr<
ResolveURICallbacks
> fileSystemCallbacks =
ResolveURICallbacks
::create(successCallback, errorCallback, scriptExecutionContext, type, path)
[
all
...]
Completed in 60 milliseconds