HomeSort by relevance Sort by last modified time
    Searched defs:EntryCallbacks (Results 1 - 2 of 2) sorted by null

  /external/webkit/Source/WebCore/fileapi/
FileSystemCallbacks.cpp 112 // EntryCallbacks -------------------------------------------------------------
114 PassOwnPtr<EntryCallbacks> EntryCallbacks::create(PassRefPtr<EntryCallback> successCallback, PassRefPtr<ErrorCallback> errorCallback, PassRefPtr<DOMFileSystemBase> fileSystem, const String& expectedPath, bool isDirectory)
116 return adoptPtr(new EntryCallbacks(successCallback, errorCallback, fileSystem, expectedPath, isDirectory));
119 EntryCallbacks::EntryCallbacks(PassRefPtr<EntryCallback> successCallback, PassRefPtr<ErrorCallback> errorCallback, PassRefPtr<DOMFileSystemBase> fileSystem, const String& expectedPath, bool isDirectory)
128 void EntryCallbacks::didSucceed()
FileSystemCallbacks.h 62 // For EntryCallbacks and VoidCallbacks.
88 class EntryCallbacks : public FileSystemCallbacksBase {
90 static PassOwnPtr<EntryCallbacks> create(PassRefPtr<EntryCallback>, PassRefPtr<ErrorCallback>, PassRefPtr<DOMFileSystemBase>, const String& expectedPath, bool isDirectory);
94 EntryCallbacks(PassRefPtr<EntryCallback>, PassRefPtr<ErrorCallback>, PassRefPtr<DOMFileSystemBase>, const String& expectedPath, bool isDirectory);

Completed in 170 milliseconds