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

  /external/webkit/Source/WebKit/chromium/src/
AsyncFileSystemChromium.cpp 55 , m_webFileSystem(WebKit::webKitClient()->fileSystem())
57 ASSERT(m_webFileSystem);
66 m_webFileSystem->move(sourcePath, destinationPath, new WebKit::WebFileSystemCallbacksImpl(callbacks));
71 m_webFileSystem->copy(sourcePath, destinationPath, new WebKit::WebFileSystemCallbacksImpl(callbacks));
76 m_webFileSystem->remove(path, new WebKit::WebFileSystemCallbacksImpl(callbacks));
81 m_webFileSystem->removeRecursively(path, new WebKit::WebFileSystemCallbacksImpl(callbacks));
86 m_webFileSystem->readMetadata(path, new WebKit::WebFileSystemCallbacksImpl(callbacks));
91 m_webFileSystem->createFile(path, exclusive, new WebKit::WebFileSystemCallbacksImpl(callbacks));
96 m_webFileSystem->createDirectory(path, exclusive, new WebKit::WebFileSystemCallbacksImpl(callbacks));
101 m_webFileSystem->fileExists(path, new WebKit::WebFileSystemCallbacksImpl(callbacks))
    [all...]
WorkerAsyncFileSystemChromium.cpp 62 , m_webFileSystem(WebKit::webKitClient()->fileSystem())
66 ASSERT(m_webFileSystem);
92 createWorkerFileSystemCallbacksBridge(callbacks)->postMoveToMainThread(m_webFileSystem, sourcePath, destinationPath, m_modeForCurrentOperation);
97 createWorkerFileSystemCallbacksBridge(callbacks)->postCopyToMainThread(m_webFileSystem, sourcePath, destinationPath, m_modeForCurrentOperation);
102 createWorkerFileSystemCallbacksBridge(callbacks)->postRemoveToMainThread(m_webFileSystem, path, m_modeForCurrentOperation);
107 createWorkerFileSystemCallbacksBridge(callbacks)->postRemoveRecursivelyToMainThread(m_webFileSystem, path, m_modeForCurrentOperation);
112 createWorkerFileSystemCallbacksBridge(callbacks)->postReadMetadataToMainThread(m_webFileSystem, path, m_modeForCurrentOperation);
117 createWorkerFileSystemCallbacksBridge(callbacks)->postCreateFileToMainThread(m_webFileSystem, path, exclusive, m_modeForCurrentOperation);
122 createWorkerFileSystemCallbacksBridge(callbacks)->postCreateDirectoryToMainThread(m_webFileSystem, path, exclusive, m_modeForCurrentOperation);
127 createWorkerFileSystemCallbacksBridge(callbacks)->postFileExistsToMainThread(m_webFileSystem, path, m_modeForCurrentOperation)
    [all...]
AsyncFileSystemChromium.h 70 WebKit::WebFileSystem* m_webFileSystem;
WorkerAsyncFileSystemChromium.h 83 WebKit::WebFileSystem* m_webFileSystem;

Completed in 204 milliseconds