Searched refs:supplement (Results 1 - 25 of 43) sorted by relevance

12

/macosx-10.10/WebKit2-7600.1.25/UIProcess/API/C/soup/
H A DWKContextSoup.cpp39 return toAPI(toImpl(contextRef)->supplement<WebSoupRequestManagerProxy>());
/macosx-10.10/WebKit2-7600.1.25/WebProcess/WebCoreSupport/
H A DWebBatteryClient.cpp41 WebProcess::shared().supplement<WebBatteryManager>()->registerWebPage(m_page);
46 WebProcess::shared().supplement<WebBatteryManager>()->unregisterWebPage(m_page);
51 WebProcess::shared().supplement<WebBatteryManager>()->unregisterWebPage(m_page);
H A DWebGeolocationClient.cpp47 WebProcess::shared().supplement<WebGeolocationManager>()->unregisterWebPage(m_page);
53 WebProcess::shared().supplement<WebGeolocationManager>()->registerWebPage(m_page);
58 WebProcess::shared().supplement<WebGeolocationManager>()->unregisterWebPage(m_page);
63 WebProcess::shared().supplement<WebGeolocationManager>()->setEnableHighAccuracyForPage(m_page, enabled);
H A DWebNotificationClient.cpp52 return WebProcess::shared().supplement<WebNotificationManager>()->show(notification, m_page);
57 WebProcess::shared().supplement<WebNotificationManager>()->cancel(notification, m_page);
62 WebProcess::shared().supplement<WebNotificationManager>()->clearNotifications(context, m_page);
67 WebProcess::shared().supplement<WebNotificationManager>()->didDestroyNotification(notification, m_page);
/macosx-10.10/WebCore-7600.1.25/Modules/indexeddb/
H A DPageGroupIndexedDatabase.cpp53 PageGroupIndexedDatabase* supplement = static_cast<PageGroupIndexedDatabase*>(Supplement<PageGroup>::from(&group, supplementName())); local
54 if (!supplement) {
56 supplement = newSupplement.get();
59 return supplement;
H A DWorkerGlobalScopeIndexedDatabase.cpp57 WorkerGlobalScopeIndexedDatabase* supplement = static_cast<WorkerGlobalScopeIndexedDatabase*>(Supplement<ScriptExecutionContext>::from(context, supplementName())); local
58 if (!supplement) {
65 supplement = newSupplement.get();
68 return supplement;
H A DDOMWindowIndexedDatabase.cpp57 DOMWindowIndexedDatabase* supplement = static_cast<DOMWindowIndexedDatabase*>(Supplement<DOMWindow>::from(window, supplementName())); local
58 if (!supplement) {
60 supplement = newSupplement.get();
63 return supplement;
/macosx-10.10/WebCore-7600.1.25/Modules/battery/
H A DNavigatorBattery.cpp57 NavigatorBattery* supplement = static_cast<NavigatorBattery*>(Supplement<Navigator>::from(navigator, supplementName())); local
58 if (!supplement) {
60 supplement = newSupplement.get();
63 return supplement;
/macosx-10.10/WebCore-7600.1.25/Modules/gamepad/deprecated/
H A DNavigatorGamepad.cpp52 NavigatorGamepad* supplement = static_cast<NavigatorGamepad*>(Supplement<Navigator>::from(navigator, supplementName())); local
53 if (!supplement) {
55 supplement = newSupplement.get();
58 return supplement;
/macosx-10.10/WebCore-7600.1.25/Modules/geolocation/
H A DNavigatorGeolocation.cpp52 NavigatorGeolocation* supplement = static_cast<NavigatorGeolocation*>(Supplement<Navigator>::from(navigator, supplementName())); local
53 if (!supplement) {
55 supplement = newSupplement.get();
58 return supplement;
/macosx-10.10/WebCore-7600.1.25/Modules/notifications/
H A DWorkerGlobalScopeNotifications.cpp55 WorkerGlobalScopeNotifications* supplement = static_cast<WorkerGlobalScopeNotifications*>(Supplement<ScriptExecutionContext>::from(context, supplementName())); local
56 if (!supplement) {
58 supplement = newSupplement.get();
61 return supplement;
H A DDOMWindowNotifications.cpp57 DOMWindowNotifications* supplement = static_cast<DOMWindowNotifications*>(Supplement<DOMWindow>::from(window, supplementName())); local
58 if (!supplement) {
60 supplement = newSupplement.get();
63 return supplement;
/macosx-10.10/WebCore-7600.1.25/Modules/quota/
H A DDOMWindowQuota.cpp61 DOMWindowQuota* supplement = static_cast<DOMWindowQuota*>(Supplement<DOMWindow>::from(window, supplementName())); local
62 if (!supplement) {
64 supplement = newSupplement.get();
67 return supplement;
H A DWorkerNavigatorStorageQuota.cpp56 WorkerNavigatorStorageQuota* supplement = static_cast<WorkerNavigatorStorageQuota*>(Supplement<WorkerNavigator>::from(navigator, supplementName())); local
57 if (!supplement) {
59 supplement = newSupplement.get();
62 return supplement;
H A DNavigatorStorageQuota.cpp58 NavigatorStorageQuota* supplement = static_cast<NavigatorStorageQuota*>(Supplement<Navigator>::from(navigator, supplementName())); local
59 if (!supplement) {
61 supplement = newSupplement.get();
64 return supplement;
/macosx-10.10/WebCore-7600.1.25/Modules/speech/
H A DDOMWindowSpeechSynthesis.cpp58 DOMWindowSpeechSynthesis* supplement = static_cast<DOMWindowSpeechSynthesis*>(Supplement<DOMWindow>::from(window, supplementName())); local
59 if (!supplement) {
61 supplement = newSupplement.get();
64 return supplement;
/macosx-10.10/WebKit2-7600.1.25/UIProcess/soup/
H A DWebContextSoup.cpp39 supplement<WebCookieManagerProxy>()->getCookiePersistentStorage(parameters.cookiePersistentStoragePath, parameters.cookiePersistentStorageType);
44 parameters.urlSchemesRegisteredForCustomProtocols = supplement<WebSoupCustomProtocolRequestManager>()->registeredSchemesForCustomProtocols();
/macosx-10.10/WebKit2-7600.1.25/UIProcess/Network/CustomProtocols/soup/
H A DCustomProtocolManagerProxySoup.cpp44 m_webContext.supplement<WebSoupCustomProtocolRequestManager>()->startLoading(customProtocolID, request);
49 m_webContext.supplement<WebSoupCustomProtocolRequestManager>()->stopLoading(customProtocolID);
/macosx-10.10/WebCore-7600.1.25/platform/
H A DSupplementable.h87 static void provideTo(Supplementable<T>* host, const char* key, std::unique_ptr<Supplement<T>> supplement) argument
89 host->provideSupplement(key, WTF::move(supplement));
101 void provideSupplement(const char* key, std::unique_ptr<Supplement<T>> supplement) argument
105 m_supplements.set(key, WTF::move(supplement));
H A DRefCountedSupplement.h56 static void provideTo(Supplementable<T>* host, const char* key, PassRefPtr<ThisType> supplement) argument
58 host->provideSupplement(key, adoptPtr(new Wrapper(supplement)));
/macosx-10.10/WebCore-7600.1.25/Modules/gamepad/
H A DNavigatorGamepad.cpp61 NavigatorGamepad* supplement = static_cast<NavigatorGamepad*>(Supplement<Navigator>::from(navigator, supplementName())); local
62 if (!supplement) {
64 supplement = newSupplement.get();
69 supplement->m_navigationStart = documentLoader->timing()->navigationStart();
72 return supplement;
/macosx-10.10/WebKit2-7600.1.25/WebProcess/Notifications/
H A DNotificationPermissionRequestManager.cpp129 return WebProcess::shared().supplement<WebNotificationManager>()->policyForOrigin(securityOrigin);
139 WebProcess::shared().supplement<WebNotificationManager>()->didUpdateNotificationDecision(originString, allowed);
149 WebProcess::shared().supplement<WebNotificationManager>()->removeAllPermissionsForTesting();
162 WebProcess::shared().supplement<WebNotificationManager>()->didUpdateNotificationDecision(origin->toString(), allowed);
/macosx-10.10/WebKit2-7600.1.25/UIProcess/efl/
H A DWebContextEfl.cpp92 parameters.urlSchemesRegistered = supplement<WebSoupRequestManagerProxy>()->registeredURISchemes();
93 supplement<WebCookieManagerProxy>()->getCookiePersistentStorage(parameters.cookiePersistentStoragePath, parameters.cookiePersistentStorageType);
/macosx-10.10/WebKit2-7600.1.25/WebProcess/soup/
H A DWebProcessSoup.cpp161 supplement<WebCookieManager>()->setCookiePersistentStorage(parameters.cookiePersistentStoragePath,
164 supplement<WebCookieManager>()->setHTTPCookieAcceptPolicy(parameters.cookieAcceptPolicy);
171 supplement<WebSoupRequestManager>()->registerURIScheme(parameters.urlSchemesRegistered[i]);
/macosx-10.10/WebKit2-7600.1.25/NetworkProcess/soup/
H A DNetworkProcessSoup.cpp91 supplement<WebCookieManager>()->setCookiePersistentStorage(parameters.cookiePersistentStoragePath,
94 supplement<WebCookieManager>()->setHTTPCookieAcceptPolicy(parameters.cookieAcceptPolicy);

Completed in 229 milliseconds

12