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

  /external/webkit/Source/WebKit2/UIProcess/
WebDownloadClient.cpp 37 void WebDownloadClient::didStart(WebContext* webContext, DownloadProxy* downloadProxy)
42 m_client.didStart(toAPI(webContext), toAPI(downloadProxy), m_client.clientInfo);
45 void WebDownloadClient::didReceiveAuthenticationChallenge(WebContext* webContext, DownloadProxy* downloadProxy, AuthenticationChallengeProxy* authenticationChallengeProxy)
50 m_client.didReceiveAuthenticationChallenge(toAPI(webContext), toAPI(downloadProxy), toAPI(authenticationChallengeProxy), m_client.clientInfo);
53 void WebDownloadClient::didReceiveResponse(WebContext* webContext, DownloadProxy* downloadProxy, const ResourceResponse& response)
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
    [all...]
WebResourceCacheManagerProxy.cpp 32 #include "WebContext.h"
40 PassRefPtr<WebResourceCacheManagerProxy> WebResourceCacheManagerProxy::create(WebContext* webContext)
42 return adoptRef(new WebResourceCacheManagerProxy(webContext));
45 WebResourceCacheManagerProxy::WebResourceCacheManagerProxy(WebContext* webContext)
46 : m_webContext(webContext)
WebDatabaseManagerProxy.cpp 32 #include "WebContext.h"
87 PassRefPtr<WebDatabaseManagerProxy> WebDatabaseManagerProxy::create(WebContext* webContext)
89 return adoptRef(new WebDatabaseManagerProxy(webContext));
92 WebDatabaseManagerProxy::WebDatabaseManagerProxy(WebContext* webContext)
93 : m_webContext(webContext)
  /external/webkit/Source/WebKit2/UIProcess/Downloads/
DownloadProxy.cpp 31 #include "WebContext.h"
47 PassRefPtr<DownloadProxy> DownloadProxy::create(WebContext* webContext)
49 return adoptRef(new DownloadProxy(webContext));
52 DownloadProxy::DownloadProxy(WebContext* webContext)
53 : m_webContext(webContext)
  /external/webkit/Source/WebKit2/UIProcess/Plugins/
WebPluginSiteDataManager.cpp 31 #include "WebContext.h"
115 PassRefPtr<WebPluginSiteDataManager> WebPluginSiteDataManager::create(WebContext* webContext)
117 return adoptRef(new WebPluginSiteDataManager(webContext));
120 WebPluginSiteDataManager::WebPluginSiteDataManager(WebContext* webContext)
121 : m_webContext(webContext)
  /external/webkit/Source/WebKit/chromium/src/
WebViewImpl.cpp     [all...]
GraphicsContext3DChromium.cpp 112 WebKit::WebGraphicsContext3D* webContext = WebKit::webKitClient()->createGraphicsContext3D();
113 if (!webContext)
121 if (!webContext->initialize(webAttributes, m_webViewImpl, renderDirectlyToHostWindow)) {
122 delete webContext;
125 m_impl.set(webContext);
    [all...]

Completed in 208 milliseconds