OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:EntryCallbacks
(Results
1 - 3
of
3
) sorted by null
/external/chromium_org/third_party/WebKit/Source/modules/filesystem/
DOMFileSystemBase.cpp
197
OwnPtr<
EntryCallbacks
> callbacks(
EntryCallbacks
::create(successCallback, errorCallback, parent->filesystem(), destinationPath, source->isDirectory()));
210
OwnPtr<
EntryCallbacks
> callbacks(
EntryCallbacks
::create(successCallback, errorCallback, parent->filesystem(), destinationPath, source->isDirectory()));
250
m_asyncFileSystem->directoryExists(createFileSystemURL(path),
EntryCallbacks
::create(successCallback, errorCallback, this, path, true));
260
OwnPtr<
EntryCallbacks
> callbacks(
EntryCallbacks
::create(successCallback, errorCallback, this, absolutePath, false));
276
OwnPtr<
EntryCallbacks
> callbacks(
EntryCallbacks
::create(successCallback, errorCallback, this, absolutePath, true));
FileSystemCallbacks.h
84
class
EntryCallbacks
: public FileSystemCallbacksBase {
86
static PassOwnPtr<
EntryCallbacks
> create(PassRefPtr<EntryCallback>, PassRefPtr<ErrorCallback>, PassRefPtr<DOMFileSystemBase>, const String& expectedPath, bool isDirectory);
90
EntryCallbacks
(PassRefPtr<EntryCallback>, PassRefPtr<ErrorCallback>, PassRefPtr<DOMFileSystemBase>, const String& expectedPath, bool isDirectory);
FileSystemCallbacks.cpp
75
//
EntryCallbacks
-------------------------------------------------------------
77
PassOwnPtr<
EntryCallbacks
>
EntryCallbacks
::create(PassRefPtr<EntryCallback> successCallback, PassRefPtr<ErrorCallback> errorCallback, PassRefPtr<DOMFileSystemBase> fileSystem, const String& expectedPath, bool isDirectory)
79
return adoptPtr(new
EntryCallbacks
(successCallback, errorCallback, fileSystem, expectedPath, isDirectory));
82
EntryCallbacks
::
EntryCallbacks
(PassRefPtr<EntryCallback> successCallback, PassRefPtr<ErrorCallback> errorCallback, PassRefPtr<DOMFileSystemBase> fileSystem, const String& expectedPath, bool isDirectory)
91
void
EntryCallbacks
::didSucceed()
Completed in 251 milliseconds