HomeSort by relevance Sort by last modified time
    Searched refs:WebContext (Results 1 - 25 of 54) sorted by null

1 2 3

  /external/webkit/Source/WebKit2/UIProcess/qt/
WebContextQt.cpp 28 #include "WebContext.h"
36 String WebContext::applicationCacheDirectory()
45 void WebContext::platformInitializeWebProcess(WebProcessCreationParameters&)
50 void WebContext::platformInvalidateContext()
54 String WebContext::platformDefaultDatabaseDirectory() const
60 String WebContext::platformDefaultIconDatabasePath() const
66 String WebContext::platformDefaultLocalStorageDirectory() const
  /external/webkit/Source/WebKit2/UIProcess/
WebDownloadClient.h 42 class WebContext;
46 void didStart(WebContext*, DownloadProxy*);
47 void didReceiveAuthenticationChallenge(WebContext*, DownloadProxy*, AuthenticationChallengeProxy*);
48 void didReceiveResponse(WebContext*, DownloadProxy*, const WebCore::ResourceResponse&);
49 void didReceiveData(WebContext*, DownloadProxy*, uint64_t length);
50 bool shouldDecodeSourceDataOfMIMEType(WebContext*, DownloadProxy*, const String& mimeType);
51 String decideDestinationWithSuggestedFilename(WebContext*, DownloadProxy*, const String& filename, bool& allowOverwrite);
52 void didCreateDestination(WebContext*, DownloadProxy*, const String& path);
53 void didFinish(WebContext*, DownloadProxy*);
54 void didFail(WebContext*, DownloadProxy*, const WebCore::ResourceError&)
    [all...]
WebHistoryClient.h 35 class WebContext;
42 void didNavigateWithNavigationData(WebContext*, WebPageProxy*, const WebNavigationDataStore&, WebFrameProxy*);
43 void didPerformClientRedirect(WebContext*, WebPageProxy*, const String& sourceURL, const String& destinationURL, WebFrameProxy*);
44 void didPerformServerRedirect(WebContext*, WebPageProxy*, const String& sourceURL, const String& destinationURL, WebFrameProxy*);
45 void didUpdateHistoryTitle(WebContext*, WebPageProxy*, const String& title, const String& url, WebFrameProxy*);
46 void populateVisitedLinks(WebContext*);
WebContextInjectedBundleClient.h 36 class WebContext;
40 void didReceiveMessageFromInjectedBundle(WebContext*, const String&, APIObject*);
41 void didReceiveSynchronousMessageFromInjectedBundle(WebContext*, const String&, APIObject*, RefPtr<APIObject>& returnData);
WebGeolocationManagerProxy.h 40 class WebContext;
47 static PassRefPtr<WebGeolocationManagerProxy> create(WebContext*);
61 explicit WebGeolocationManagerProxy(WebContext*);
73 WebContext* m_context;
WebContext.cpp 27 #include "WebContext.h"
71 static WTF::RefCountedLeakCounter webContextCounter("WebContext");
74 WebContext* WebContext::sharedProcessContext()
78 static WebContext* context = adoptRef(new WebContext(ProcessModelSharedSecondaryProcess, String())).leakRef();
82 WebContext* WebContext::sharedThreadContext()
85 static WebContext* context = adoptRef(new WebContext(ProcessModelSharedSecondaryThread, String())).leakRef()
    [all...]
VisitedLinkProvider.h 37 class WebContext;
42 explicit VisitedLinkProvider(WebContext*);
52 WebContext* m_context;
WebApplicationCacheManagerProxy.h 46 class WebContext;
56 static PassRefPtr<WebApplicationCacheManagerProxy> create(WebContext*);
71 WebApplicationCacheManagerProxy(WebContext*);
79 WebContext* m_webContext;
WebKeyValueStorageManagerProxy.h 46 class WebContext;
56 static PassRefPtr<WebKeyValueStorageManagerProxy> create(WebContext*);
71 WebKeyValueStorageManagerProxy(WebContext*);
79 WebContext* m_webContext;
WebMediaCacheManagerProxy.h 45 class WebContext;
54 static PassRefPtr<WebMediaCacheManagerProxy> create(WebContext*);
69 WebMediaCacheManagerProxy(WebContext*);
77 WebContext* m_webContext;
WebResourceCacheManagerProxy.h 45 class WebContext;
55 static PassRefPtr<WebResourceCacheManagerProxy> create(WebContext*);
70 explicit WebResourceCacheManagerProxy(WebContext*);
77 WebContext* m_webContext;
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...]
WebCookieManagerProxy.h 45 class WebContext;
55 static PassRefPtr<WebCookieManagerProxy> create(WebContext*);
78 WebCookieManagerProxy(WebContext*);
93 WebContext* m_webContext;
WebDatabaseManagerProxy.h 45 class WebContext;
55 static PassRefPtr<WebDatabaseManagerProxy> create(WebContext*);
84 explicit WebDatabaseManagerProxy(WebContext*);
94 WebContext* m_webContext;
WebHistoryClient.cpp 37 void WebHistoryClient::didNavigateWithNavigationData(WebContext* context, WebPageProxy* page, const WebNavigationDataStore& navigationDataStore, WebFrameProxy* frame)
46 void WebHistoryClient::didPerformClientRedirect(WebContext* context, WebPageProxy* page, const String& sourceURL, const String& destinationURL, WebFrameProxy* frame)
54 void WebHistoryClient::didPerformServerRedirect(WebContext* context, WebPageProxy* page, const String& sourceURL, const String& destinationURL, WebFrameProxy* frame)
62 void WebHistoryClient::didUpdateHistoryTitle(WebContext* context, WebPageProxy* page, const String& title, const String& url, WebFrameProxy* frame)
70 void WebHistoryClient::populateVisitedLinks(WebContext* context)
WebContextInjectedBundleClient.cpp 36 void WebContextInjectedBundleClient::didReceiveMessageFromInjectedBundle(WebContext* context, const String& messageName, APIObject* messageBody)
44 void WebContextInjectedBundleClient::didReceiveSynchronousMessageFromInjectedBundle(WebContext* context, const String& messageName, APIObject* messageBody, RefPtr<APIObject>& returnData)
WebGeolocationManagerProxy.cpp 29 #include "WebContext.h"
34 PassRefPtr<WebGeolocationManagerProxy> WebGeolocationManagerProxy::create(WebContext* context)
39 WebGeolocationManagerProxy::WebGeolocationManagerProxy(WebContext* context)
WebIconDatabase.h 53 class WebContext;
59 static PassRefPtr<WebIconDatabase> create(WebContext*);
99 WebIconDatabase(WebContext*);
106 WebContext* m_webContext;
  /external/webkit/Source/WebKit2/UIProcess/gtk/
WebContextGtk.cpp 28 #include "WebContext.h"
35 WTF::String WebContext::applicationCacheDirectory()
40 void WebContext::platformInitializeWebProcess(WebProcessCreationParameters&)
44 void WebContext::platformInvalidateContext()
48 String WebContext::platformDefaultDatabaseDirectory() const
53 String WebContext::platformDefaultIconDatabasePath() const
59 String WebContext::platformDefaultLocalStorageDirectory() const
  /external/webkit/Source/WebKit2/UIProcess/win/
WebContextWin.cpp 27 #include "WebContext.h"
42 String WebContext::applicationCacheDirectory()
47 void WebContext::setShouldPaintNativeControls(bool b)
54 void WebContext::platformInitializeWebProcess(WebProcessCreationParameters& parameters)
79 void WebContext::platformInvalidateContext()
83 String WebContext::platformDefaultDatabaseDirectory() const
88 String WebContext::platformDefaultIconDatabasePath() const
94 String WebContext::platformDefaultLocalStorageDirectory() const
WebTextChecker.cpp 31 #include "WebContext.h"
53 const Vector<WebContext*>& contexts = WebContext::allContexts();
  /external/webkit/Source/WebKit2/UIProcess/API/qt/
qwkcontext_p.h 24 #include "WebContext.h"
34 RefPtr<WebKit::WebContext> context;
  /external/webkit/Source/WebKit2/Shared/
WebURLRequest.cpp 13 #include "WebContext.h"
34 // FIXME: This function should really be on WebContext.
39 const Vector<WebContext*>& contexts = WebContext::allContexts();
  /external/webkit/Source/WebKit2/UIProcess/Downloads/
DownloadProxy.h 44 class WebContext;
51 static PassRefPtr<DownloadProxy> create(WebContext*);
67 explicit DownloadProxy(WebContext*);
83 WebContext* m_webContext;
  /external/webkit/Source/WebKit2/UIProcess/Plugins/
WebPluginSiteDataManager.h 37 class WebContext;
46 static PassRefPtr<WebPluginSiteDataManager> create(WebContext*);
66 explicit WebPluginSiteDataManager(WebContext*);
70 WebContext* m_webContext;

Completed in 746 milliseconds

1 2 3