HomeSort by relevance Sort by last modified time
    Searched refs:DOMFileSystem (Results 1 - 14 of 14) sorted by null

  /external/webkit/Source/WebCore/fileapi/
FileSystemCallback.h 40 class DOMFileSystem;
45 virtual bool handleEvent(DOMFileSystem*) = 0;
FileSystemCallback.idl 36 boolean handleEvent(in DOMFileSystem fileSystem);
DOMFileSystem.idl 35 ] DOMFileSystem {
DOMFileSystem.cpp 32 #include "DOMFileSystem.h"
53 DOMFileSystem::DOMFileSystem(ScriptExecutionContext* context, const String& name, PassOwnPtr<AsyncFileSystem> asyncFileSystem)
59 PassRefPtr<DirectoryEntry> DOMFileSystem::root()
64 void DOMFileSystem::stop()
69 bool DOMFileSystem::hasPendingActivity() const
74 void DOMFileSystem::contextDestroyed()
103 void DOMFileSystem::createWriter(const FileEntry* fileEntry, PassRefPtr<FileWriterCallback> successCallback, PassRefPtr<ErrorCallback> errorCallback)
119 static PassOwnPtr<GetPathCallback> create(PassRefPtr<DOMFileSystem> filesystem, const String& path, PassRefPtr<FileCallback> successCallback, PassRefPtr<ErrorCallback> errorCallback)
133 GetPathCallback(PassRefPtr<DOMFileSystem> filesystem, const String& path, PassRefPtr<FileCallback> successCallback, PassRefPtr<ErrorCallbac (…)
    [all...]
DirectoryReader.h 36 #include "DOMFileSystem.h"
57 DOMFileSystem* filesystem() const { return static_cast<DOMFileSystem*>(m_fileSystem.get()); }
DOMFileSystem.h 48 class DOMFileSystem : public DOMFileSystemBase, public ActiveDOMObject {
50 static PassRefPtr<DOMFileSystem> create(ScriptExecutionContext* context, const String& name, PassOwnPtr<AsyncFileSystem> asyncFileSystem)
52 return adoptRef(new DOMFileSystem(context, name, asyncFileSystem));
77 DOMFileSystem(ScriptExecutionContext*, const String& name, PassOwnPtr<AsyncFileSystem>);
101 void DOMFileSystem::scheduleCallback(ScriptExecutionContext* scriptExecutionContext, PassRefPtr<CB> callback, PassRefPtr<CBArg> arg)
Entry.h 36 #include "DOMFileSystem.h"
52 DOMFileSystem* filesystem() const { return static_cast<DOMFileSystem*>(m_fileSystem.get()); }
Entry.idl 41 readonly attribute DOMFileSystem filesystem;
SyncCallbackHelper.h 181 typedef SyncCallbackHelper<FileSystemCallback, EmptyObserverType, DOMFileSystem, DOMFileSystemSync> FileSystemSyncCallbackHelper;
FileSystemCallbacks.cpp 189 m_successCallback->handleEvent(DOMFileSystem::create(m_scriptExecutionContext.get(), name, asyncFileSystem.leakPtr()).get());
250 RefPtr<DirectoryEntry> root = DOMFileSystem::create(m_scriptExecutionContext.get(), name, asyncFileSystem.leakPtr())->root();
  /external/webkit/Source/WebCore/workers/
WorkerContext.cpp 72 #include "DOMFileSystem.h"
356 DOMFileSystem::scheduleCallback(this, errorCallback, FileError::create(FileError::SECURITY_ERR));
362 DOMFileSystem::scheduleCallback(this, errorCallback, FileError::create(FileError::INVALID_MODIFICATION_ERR));
392 DOMFileSystem::scheduleCallback(this, errorCallback, FileError::create(FileError::SECURITY_ERR));
399 DOMFileSystem::scheduleCallback(this, errorCallback, FileError::create(FileError::ENCODING_ERR));
  /external/webkit/Source/WebCore/page/
DOMWindow.cpp 102 #include "DOMFileSystem.h"
754 DOMFileSystem::scheduleCallback(document, errorCallback, FileError::create(FileError::SECURITY_ERR));
760 DOMFileSystem::scheduleCallback(document, errorCallback, FileError::create(FileError::INVALID_MODIFICATION_ERR));
776 DOMFileSystem::scheduleCallback(document, errorCallback, FileError::create(FileError::SECURITY_ERR));
783 DOMFileSystem::scheduleCallback(document, errorCallback, FileError::create(FileError::ENCODING_ERR));
    [all...]
  /external/webkit/Source/WebKit/chromium/src/
WebFrameImpl.cpp 168 #include "DOMFileSystem.h"
856 return toV8(DOMFileSystem::create(frame()->document(), name, AsyncFileSystemChromium::create(static_cast<AsyncFileSystem::Type>(type), path)));
865 RefPtr<DOMFileSystemBase> fileSystem = DOMFileSystem::create(frame()->document(), fileSystemName, AsyncFileSystemChromium::create(static_cast<AsyncFileSystem::Type>(type), fileSystemPath));
    [all...]
  /external/chromium/chrome/browser/resources/file_manager/js/
file_manager.js 23 * @param {DOMFileSystem} filesystem The HTML5 filesystem object representing
    [all...]

Completed in 138 milliseconds