Searched refs:webContext (Results 1 - 7 of 7) sorted by relevance

/external/webkit/Source/WebKit2/UIProcess/
H A DWebDownloadClient.cpp37 void WebDownloadClient::didStart(WebContext* webContext, DownloadProxy* downloadProxy) argument
42 m_client.didStart(toAPI(webContext), toAPI(downloadProxy), m_client.clientInfo);
45 void WebDownloadClient::didReceiveAuthenticationChallenge(WebContext* webContext, DownloadProxy* downloadProxy, AuthenticationChallengeProxy* authenticationChallengeProxy) argument
50 m_client.didReceiveAuthenticationChallenge(toAPI(webContext), toAPI(downloadProxy), toAPI(authenticationChallengeProxy), m_client.clientInfo);
53 void WebDownloadClient::didReceiveResponse(WebContext* webContext, DownloadProxy* downloadProxy, const ResourceResponse& response) argument
58 m_client.didReceiveResponse(toAPI(webContext), toAPI(downloadProxy), toAPI(WebURLResponse::create(response).get()), m_client.clientInfo);
61 void WebDownloadClient::didReceiveData(WebContext* webContext, DownloadProxy* downloadProxy, uint64_t length) argument
66 m_client.didReceiveData(toAPI(webContext), toAPI(downloadProxy), length, m_client.clientInfo);
69 bool WebDownloadClient::shouldDecodeSourceDataOfMIMEType(WebContext* webContext, DownloadProxy* downloadProxy, const String& mimeType) argument
74 return m_client.shouldDecodeSourceDataOfMIMEType(toAPI(webContext), toAP
77 decideDestinationWithSuggestedFilename(WebContext* webContext, DownloadProxy* downloadProxy, const String& filename, bool& allowOverwrite) argument
86 didCreateDestination(WebContext* webContext, DownloadProxy* downloadProxy, const String& path) argument
94 didFinish(WebContext* webContext, DownloadProxy* downloadProxy) argument
102 didFail(WebContext* webContext, DownloadProxy* downloadProxy, const ResourceError& error) argument
110 didCancel(WebContext* webContext, DownloadProxy* downloadProxy) argument
118 processDidCrash(WebContext* webContext, DownloadProxy* downloadProxy) argument
[all...]
H A DWebResourceCacheManagerProxy.cpp40 PassRefPtr<WebResourceCacheManagerProxy> WebResourceCacheManagerProxy::create(WebContext* webContext) argument
42 return adoptRef(new WebResourceCacheManagerProxy(webContext));
45 WebResourceCacheManagerProxy::WebResourceCacheManagerProxy(WebContext* webContext) argument
46 : m_webContext(webContext)
H A DWebDatabaseManagerProxy.cpp87 PassRefPtr<WebDatabaseManagerProxy> WebDatabaseManagerProxy::create(WebContext* webContext) argument
89 return adoptRef(new WebDatabaseManagerProxy(webContext));
92 WebDatabaseManagerProxy::WebDatabaseManagerProxy(WebContext* webContext) argument
93 : m_webContext(webContext)
/external/webkit/Source/WebKit2/UIProcess/Downloads/
H A DDownloadProxy.cpp47 PassRefPtr<DownloadProxy> DownloadProxy::create(WebContext* webContext) argument
49 return adoptRef(new DownloadProxy(webContext));
52 DownloadProxy::DownloadProxy(WebContext* webContext) argument
53 : m_webContext(webContext)
/external/webkit/Source/WebKit2/UIProcess/Plugins/
H A DWebPluginSiteDataManager.cpp115 PassRefPtr<WebPluginSiteDataManager> WebPluginSiteDataManager::create(WebContext* webContext) argument
117 return adoptRef(new WebPluginSiteDataManager(webContext));
120 WebPluginSiteDataManager::WebPluginSiteDataManager(WebContext* webContext) argument
121 : m_webContext(webContext)
/external/webkit/Source/WebKit/chromium/src/
H A DWebViewImpl.cpp2433 WebGraphicsContext3D* webContext = GraphicsContext3DInternal::extractWebGraphicsContext3D(newContext.get()); local
2434 if (!newContext || !webContext || webContext->isContextLost())
2479 WebGraphicsContext3D* webContext = GraphicsContext3DInternal::extractWebGraphicsContext3D(m_layerRenderer->context()); local
2480 if (webContext && !webContext->isContextLost())
2481 return webContext;
2484 WebGraphicsContext3D* webContext = GraphicsContext3DInternal::extractWebGraphicsContext3D(m_temporaryOnscreenGraphicsContext3D.get()); local
2485 if (webContext && !webContext
[all...]
H A DGraphicsContext3DChromium.cpp112 WebKit::WebGraphicsContext3D* webContext = WebKit::webKitClient()->createGraphicsContext3D(); local
113 if (!webContext)
121 if (!webContext->initialize(webAttributes, m_webViewImpl, renderDirectlyToHostWindow)) {
122 delete webContext;
125 m_impl.set(webContext);

Completed in 296 milliseconds