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

  /external/webkit/Source/WebKit/chromium/src/
WebWorkerBase.cpp 70 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)
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)
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)
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_webView->mainFrame(), String(name), String(displayName), estimatedSize)
    [all...]
WebSharedWorkerImpl.h 61 WebCommonWorkerClient* commonClient() { return m_client; }
WebWorkerImpl.h 63 virtual WebCommonWorkerClient* commonClient();
WebWorkerImpl.cpp 74 WebCommonWorkerClient* WebWorkerImpl::commonClient()
WorkerFileSystemCallbacksBridge.cpp 156 void WorkerFileSystemCallbacksBridge::postOpenFileSystemToMainThread(WebCommonWorkerClient* commonClient, WebFileSystem::Type type, long long size, bool create, const String& mode)
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)
220 if (!commonClient)
223 commonClient->openFileSystem(type, size, create, MainThreadFileSystemCallbacks::createLeakedPtr(bridge, mode));
WebWorkerBase.h 103 virtual WebCommonWorkerClient* commonClient() = 0;

Completed in 47 milliseconds