Searched refs:supplementName (Results 76 - 100 of 119) sorted by relevance

12345

/external/chromium_org/third_party/WebKit/Source/modules/serviceworkers/
H A DNavigatorServiceWorker.h25 static const char* supplementName();
H A DServiceWorkerContainerClient.h31 static const char* supplementName();
H A DServiceWorkerGlobalScopeClient.h69 static const char* supplementName();
/external/chromium_org/third_party/WebKit/Source/modules/webdatabase/
H A DDatabaseClient.h56 static const char* supplementName();
/external/chromium_org/third_party/WebKit/Source/modules/webmidi/
H A DNavigatorWebMIDI.h57 static const char* supplementName();
/external/chromium_org/third_party/WebKit/Source/web/
H A DContextFeaturesClientImpl.cpp80 static const char* supplementName();
97 const char* ContextFeaturesCache::supplementName()
104 ContextFeaturesCache* cache = static_cast<ContextFeaturesCache*>(DocumentSupplement::from(document, supplementName()));
107 DocumentSupplement::provideTo(document, supplementName(), adoptPtrWillBeNoop(cache));
H A DWorkerPermissionClient.h54 static const char* supplementName();
/external/chromium_org/third_party/WebKit/Source/core/xml/
H A DDocumentXPathEvaluator.cpp41 DocumentXPathEvaluator* cache = static_cast<DocumentXPathEvaluator*>(DocumentSupplement::from(document, supplementName()));
44 DocumentSupplement::provideTo(document, supplementName(), adoptPtrWillBeNoop(cache));
H A DDocumentXPathEvaluator.h56 static const char* supplementName() { return "DocumentXPathEvaluator"; } function in class:blink::FINAL
/external/chromium_org/third_party/WebKit/Source/modules/geolocation/
H A DGeolocationController.h69 static const char* supplementName();
70 static GeolocationController* from(LocalFrame* frame) { return static_cast<GeolocationController*>(WillBeHeapSupplement<LocalFrame>::from(frame, supplementName())); }
/external/chromium_org/third_party/WebKit/Source/modules/mediastream/
H A DUserMediaController.h53 static const char* supplementName();
54 static UserMediaController* from(LocalFrame* frame) { return static_cast<UserMediaController*>(WillBeHeapSupplement<LocalFrame>::from(frame, supplementName())); }
/external/chromium_org/third_party/WebKit/Source/modules/speech/
H A DSpeechRecognitionController.h49 static const char* supplementName();
50 static SpeechRecognitionController* from(Page* page) { return static_cast<SpeechRecognitionController*>(WillBeHeapSupplement<Page>::from(page, supplementName())); }
/external/chromium_org/third_party/WebKit/Source/modules/vibration/
H A DNavigatorVibration.cpp163 NavigatorVibration* navigatorVibration = static_cast<NavigatorVibration*>(WillBeHeapSupplement<Page>::from(page, supplementName()));
166 WillBeHeapSupplement<Page>::provideTo(page, supplementName(), adoptPtrWillBeNoop(navigatorVibration));
171 const char* NavigatorVibration::supplementName() function in class:blink::NavigatorVibration
H A DNavigatorVibration.h65 static const char* supplementName();
/external/chromium_org/third_party/WebKit/Source/modules/credentialmanager/
H A DCredentialManagerClient.h28 static const char* supplementName();
/external/chromium_org/third_party/WebKit/Source/modules/device_orientation/
H A DDeviceOrientationController.h21 static const char* supplementName();
/external/chromium_org/third_party/WebKit/Source/modules/notifications/
H A DNotificationController.h45 static const char* supplementName();
/external/chromium_org/third_party/WebKit/Source/modules/quota/
H A DNavigatorStorageQuota.h63 static const char* supplementName();
/external/chromium_org/third_party/WebKit/Source/modules/filesystem/
H A DLocalFileSystem.cpp200 const char* LocalFileSystem::supplementName() function in class:blink::LocalFileSystem
208 return static_cast<LocalFileSystem*>(WillBeHeapSupplement<LocalFrame>::from(toDocument(context).frame(), supplementName()));
211 return static_cast<LocalFileSystem*>(WillBeHeapSupplement<WorkerClients>::from(toWorkerGlobalScope(context).clients(), supplementName()));
216 frame.provideSupplement(LocalFileSystem::supplementName(), LocalFileSystem::create(client));
221 clients->provideSupplement(LocalFileSystem::supplementName(), LocalFileSystem::create(client));
/external/chromium_org/third_party/WebKit/Source/core/html/imports/
H A DHTMLImportsController.cpp45 const char* HTMLImportsController::supplementName() function in class:blink::HTMLImportsController
55 DocumentSupplement::provideTo(master, supplementName(), controller.release());
60 static_cast<DocumentSupplementable&>(master).removeSupplement(supplementName());
H A DHTMLImportsController.h58 static const char* supplementName();
/external/chromium_org/third_party/WebKit/Source/modules/beacon/
H A DNavigatorBeacon.cpp28 const char* NavigatorBeacon::supplementName() function in class:blink::NavigatorBeacon
35 NavigatorBeacon* supplement = static_cast<NavigatorBeacon*>(WillBeHeapSupplement<Navigator>::from(navigator, supplementName()));
38 provideTo(navigator, supplementName(), adoptPtrWillBeNoop(supplement));
H A DNavigatorBeacon.h37 static const char* supplementName();
/external/chromium_org/third_party/WebKit/Source/modules/navigatorcontentutils/
H A DNavigatorContentUtils.cpp142 return static_cast<NavigatorContentUtils*>(WillBeHeapSupplement<Page>::from(page, supplementName()));
231 const char* NavigatorContentUtils::supplementName() function in class:blink::NavigatorContentUtils
238 NavigatorContentUtils::provideTo(page, NavigatorContentUtils::supplementName(), NavigatorContentUtils::create(client));
/external/chromium_org/third_party/WebKit/Source/modules/screen_orientation/
H A DScreenOrientationController.cpp29 WillBeHeapSupplement<LocalFrame>::provideTo(frame, supplementName(), adoptPtrWillBeNoop(controller));
34 return static_cast<ScreenOrientationController*>(WillBeHeapSupplement<LocalFrame>::from(frame, supplementName()));
45 const char* ScreenOrientationController::supplementName() function in class:blink::ScreenOrientationController

Completed in 976 milliseconds

12345