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

  /external/webkit/Source/WebKit/chromium/src/
WorkerFileSystemCallbacksBridge.h 39 #include "WebFileSystem.h"
87 void postOpenFileSystemToMainThread(WebCommonWorkerClient*, WebFileSystem::Type, long long size, bool create, const String& mode);
88 void postMoveToMainThread(WebFileSystem*, const String& srcPath, const String& destPath, const String& mode);
89 void postCopyToMainThread(WebFileSystem*, const String& srcPath, const String& destPath, const String& mode);
90 void postRemoveToMainThread(WebFileSystem*, const String& path, const String& mode);
91 void postRemoveRecursivelyToMainThread(WebFileSystem*, const String& path, const String& mode);
92 void postReadMetadataToMainThread(WebFileSystem*, const String& path, const String& mode);
93 void postCreateFileToMainThread(WebFileSystem*, const String& path, bool exclusive, const String& mode);
94 void postCreateDirectoryToMainThread(WebFileSystem*, const String& path, bool exclusive, const String& mode);
95 void postFileExistsToMainThread(WebFileSystem*, const String& path, const String& mode)
    [all...]
WorkerAsyncFileWriterChromium.h 40 class WebFileSystem;
64 static PassOwnPtr<WorkerAsyncFileWriterChromium> create(WebKit::WebFileSystem* webFileSystem, const String& path, WorkerContext* workerContext, AsyncFileWriterClient* client, WriterType type)
66 return adoptPtr(new WorkerAsyncFileWriterChromium(webFileSystem, path, workerContext, client, type));
79 WorkerAsyncFileWriterChromium(WebKit::WebFileSystem*, const String& path, WorkerContext*, AsyncFileWriterClient*, WriterType);
WorkerFileSystemCallbacksBridge.cpp 156 void WorkerFileSystemCallbacksBridge::postOpenFileSystemToMainThread(WebCommonWorkerClient* commonClient, WebFileSystem::Type type, long long size, bool create, const String& mode)
161 void WorkerFileSystemCallbacksBridge::postMoveToMainThread(WebFileSystem* fileSystem, const String& sourcePath, const String& destinationPath, const String& mode)
166 void WorkerFileSystemCallbacksBridge::postCopyToMainThread(WebFileSystem* fileSystem, const String& sourcePath, const String& destinationPath, const String& mode)
171 void WorkerFileSystemCallbacksBridge::postRemoveToMainThread(WebFileSystem* fileSystem, const String& path, const String& mode)
177 void WorkerFileSystemCallbacksBridge::postRemoveRecursivelyToMainThread(WebFileSystem* fileSystem, const String& path, const String& mode)
183 void WorkerFileSystemCallbacksBridge::postReadMetadataToMainThread(WebFileSystem* fileSystem, const String& path, const String& mode)
189 void WorkerFileSystemCallbacksBridge::postCreateFileToMainThread(WebFileSystem* fileSystem, const String& path, bool exclusive, const String& mode)
194 void WorkerFileSystemCallbacksBridge::postCreateDirectoryToMainThread(WebFileSystem* fileSystem, const String& path, bool exclusive, const String& mode)
200 void WorkerFileSystemCallbacksBridge::postFileExistsToMainThread(WebFileSystem* fileSystem, const String& path, const String& mode)
206 void WorkerFileSystemCallbacksBridge::postDirectoryExistsToMainThread(WebFileSystem* fileSystem, const String& path, const String& mode
    [all...]
AsyncFileSystemChromium.h 40 class WebFileSystem;
70 WebKit::WebFileSystem* m_webFileSystem;
LocalFileSystemChromium.cpp 41 #include "WebFileSystem.h"
75 webFrame->client()->openFileSystem(webFrame, static_cast<WebFileSystem::Type>(type), size, create == CreateIfNotPresent, new WebFileSystemCallbacksImpl(callbacks, type));
80 webWorker->openFileSystemForWorker(static_cast<WebFileSystem::Type>(type), size, create == CreateIfNotPresent, new WebFileSystemCallbacksImpl(callbacks, type, context, synchronous), synchronous);
WorkerAsyncFileWriterChromium.cpp 39 #include "WebFileSystem.h"
53 WorkerAsyncFileWriterChromium::WorkerAsyncFileWriterChromium(WebFileSystem* webFileSystem, const String& path, WorkerContext* workerContext, AsyncFileWriterClient* client, WriterType type)
WorkerAsyncFileSystemChromium.h 42 class WebFileSystem;
83 WebKit::WebFileSystem* m_webFileSystem;
AsyncFileSystemChromium.cpp 38 #include "WebFileSystem.h"
116 FileWriterHelperCallbacks(AsyncFileWriterClient* client, const String& path, WebKit::WebFileSystem* webFileSystem, PassOwnPtr<WebCore::AsyncFileSystemCallbacks> callbacks)
119 , m_webFileSystem(webFileSystem)
164 WebKit::WebFileSystem* m_webFileSystem;
WorkerAsyncFileSystemChromium.cpp 40 #include "WebFileSystem.h"
142 static PassOwnPtr<WorkerFileWriterHelperCallbacks> create(AsyncFileWriterClient* client, const String& path, WebKit::WebFileSystem* webFileSystem, PassOwnPtr<WebCore::AsyncFileSystemCallbacks> callbacks, WorkerContext* workerContext)
144 return adoptPtr(new WorkerFileWriterHelperCallbacks(client, path, webFileSystem, callbacks, workerContext));
191 WorkerFileWriterHelperCallbacks(AsyncFileWriterClient* client, const String& path, WebKit::WebFileSystem* webFileSystem, PassOwnPtr<WebCore::AsyncFileSystemCallbacks> callbacks, WorkerContext* workerContext)
194 , m_webFileSystem(webFileSystem)
202 WebKit::WebFileSystem* m_webFileSystem;
WebWorkerBase.h 95 void openFileSystemForWorker(WebFileSystem::Type, long long size, bool create, WebFileSystemCallbacks*, bool synchronous);
WorkerFileWriterCallbacksBridge.h 56 class WebFileSystem;
WebFrameImpl.h 112 virtual v8::Handle<v8::Value> createFileSystem(WebFileSystem::Type,
115 virtual v8::Handle<v8::Value> createFileEntry(WebFileSystem::Type,
AssertMatchingEnums.cpp 69 #include "WebFileSystem.h"
395 COMPILE_ASSERT_MATCHING_ENUM(WebFileSystem::TypeTemporary, AsyncFileSystem::Temporary);
396 COMPILE_ASSERT_MATCHING_ENUM(WebFileSystem::TypePersistent, AsyncFileSystem::Persistent);
397 COMPILE_ASSERT_MATCHING_ENUM(WebFileSystem::TypeExternal, AsyncFileSystem::External);
WebWorkerBase.cpp 240 void WebWorkerBase::openFileSystemForWorker(WebFileSystem::Type type, long long size, bool create, WebFileSystemCallbacks* callbacks, bool synchronous)
WebFrameImpl.cpp 173 #include "WebFileSystem.h"
852 v8::Handle<v8::Value> WebFrameImpl::createFileSystem(WebFileSystem::Type type,
859 v8::Handle<v8::Value> WebFrameImpl::createFileEntry(WebFileSystem::Type type,
    [all...]
  /external/webkit/Source/WebKit/chromium/public/
WebFileSystem.h 46 class WebFileSystem {
120 virtual ~WebFileSystem() { }
WebCommonWorkerClient.h 35 #include "WebFileSystem.h"
90 virtual void openFileSystem(WebFileSystem::Type, long long size, bool create, WebFileSystemCallbacks*)
WebKitClient.h 57 class WebFileSystem;
295 virtual WebFileSystem* fileSystem() { return 0; }
WebFrame.h 35 #include "WebFileSystem.h"
268 virtual v8::Handle<v8::Value> createFileSystem(WebFileSystem::Type,
272 virtual v8::Handle<v8::Value> createFileEntry(WebFileSystem::Type,
WebFrameClient.h 35 #include "WebFileSystem.h"
370 WebFrame*, WebFileSystem::Type, long long size,
  /external/webkit/Tools/DumpRenderTree/chromium/
WebViewHost.h 211 virtual void openFileSystem(WebKit::WebFrame*, WebKit::WebFileSystem::Type, long long size, bool create, WebKit::WebFileSystemCallbacks*);
WebViewHost.cpp     [all...]

Completed in 125 milliseconds