Searched refs:commonClient (Results 1 - 6 of 6) sorted by relevance

/external/webkit/Source/WebKit/chromium/src/
H A DWebWorkerBase.cpp70 static PassRefPtr<AllowDatabaseMainThreadBridge> create(WebWorkerBase* worker, const WTF::String& mode, WebCommonWorkerClient* commonClient, WebFrame* frame, const WTF::String& name, const WTF::String& displayName, unsigned long estimatedSize) argument
72 return adoptRef(new AllowDatabaseMainThreadBridge(worker, mode, commonClient, frame, name, displayName, estimatedSize));
96 AllowDatabaseMainThreadBridge(WebWorkerBase* worker, const WTF::String& mode, WebCommonWorkerClient* commonClient, WebFrame* frame, const WTF::String& name, const WTF::String& displayName, unsigned long estimatedSize) argument
100 worker->dispatchTaskToMainThread(createCallbackTask(&allowDatabaseTask, commonClient, frame, String(name), String(displayName), estimatedSize, this));
103 static void allowDatabaseTask(WebCore::ScriptExecutionContext* context, WebCommonWorkerClient* commonClient, WebFrame* frame, const WTF::String name, const WTF::String displayName, unsigned long estimatedSize, PassRefPtr<AllowDatabaseMainThreadBridge> bridge) argument
105 if (!commonClient)
108 bridge->signalCompleted(commonClient->allowDatabase(frame, name, displayName, estimatedSize));
213 if (commonClient())
214 return commonClient()->createApplicationCacheHost(appcacheHostClient);
228 RefPtr<AllowDatabaseMainThreadBridge> bridge = AllowDatabaseMainThreadBridge::create(this, mode, commonClient(), m_webVie
[all...]
H A DWebSharedWorkerImpl.h61 WebCommonWorkerClient* commonClient() { return m_client; } function in class:WebKit::WebSharedWorkerImpl
H A DWebWorkerImpl.h63 virtual WebCommonWorkerClient* commonClient();
H A DWebWorkerImpl.cpp74 WebCommonWorkerClient* WebWorkerImpl::commonClient() function in class:WebKit::WebWorkerImpl
H A DWorkerFileSystemCallbacksBridge.cpp156 void WorkerFileSystemCallbacksBridge::postOpenFileSystemToMainThread(WebCommonWorkerClient* commonClient, WebFileSystem::Type type, long long size, bool create, const String& mode) argument
158 dispatchTaskToMainThread(createCallbackTask(&openFileSystemOnMainThread, commonClient, type, size, create, this, mode));
218 void WorkerFileSystemCallbacksBridge::openFileSystemOnMainThread(ScriptExecutionContext*, WebCommonWorkerClient* commonClient, WebFileSystem::Type type, long long size, bool create, WorkerFileSystemCallbacksBridge* bridge, const String& mode) argument
220 if (!commonClient)
223 commonClient->openFileSystem(type, size, create, MainThreadFileSystemCallbacks::createLeakedPtr(bridge, mode));
H A DWebWorkerBase.h103 virtual WebCommonWorkerClient* commonClient() = 0;

Completed in 338 milliseconds