Home
last modified time | relevance | path

Searched refs:EntriesCallbacks (Results 1 – 4 of 4) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/modules/filesystem/
DFileSystemCallbacks.cpp105 PassOwnPtr<AsyncFileSystemCallbacks> EntriesCallbacks::create(PassOwnPtr<EntriesCallback> successCa… in create()
107 … return adoptPtr(new EntriesCallbacks(successCallback, errorCallback, directoryReader, basePath)); in create()
110 EntriesCallbacks::EntriesCallbacks(PassOwnPtr<EntriesCallback> successCallback, PassOwnPtr<ErrorCal… in EntriesCallbacks() function in WebCore::EntriesCallbacks
119 void EntriesCallbacks::didReadDirectoryEntry(const String& name, bool isDirectory) in didReadDirectoryEntry()
127 void EntriesCallbacks::didReadDirectoryEntries(bool hasMore) in didReadDirectoryEntries()
DFileSystemCallbacks.h85 class EntriesCallbacks : public FileSystemCallbacksBase {
92EntriesCallbacks(PassOwnPtr<EntriesCallback>, PassOwnPtr<ErrorCallback>, PassRefPtr<DirectoryReade…
DDirectoryReader.h44 class EntriesCallbacks; variable
DDOMFileSystemBase.cpp327 …OwnPtr<AsyncFileSystemCallbacks> callbacks(EntriesCallbacks::create(successCallback, errorCallback… in readDirectory()