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

12345

/external/chromium_org/third_party/WebKit/Source/modules/filesystem/
H A DLocalFileSystem.h62 static const char* supplementName();
/external/chromium_org/third_party/WebKit/Source/modules/gamepad/
H A DNavigatorGamepad.h66 static const char* supplementName();
H A DNavigatorGamepad.cpp85 NavigatorGamepad* supplement = static_cast<NavigatorGamepad*>(WillBeHeapSupplement<Navigator>::from(navigator, supplementName()));
88 provideTo(navigator, supplementName(), adoptPtrWillBeNoop(supplement));
189 const char* NavigatorGamepad::supplementName() function in class:blink::NavigatorGamepad
/external/chromium_org/third_party/WebKit/Source/modules/navigatorcontentutils/
H A DNavigatorContentUtils.h48 static const char* supplementName();
/external/chromium_org/third_party/WebKit/Source/modules/screen_orientation/
H A DScreenOrientationController.h40 static const char* supplementName();
/external/chromium_org/third_party/WebKit/Source/core/testing/
H A DInternalSettings.cpp104 if (!HeapSupplement<Page>::from(page, supplementName()))
105 HeapSupplement<Page>::provideTo(page, supplementName(), new InternalSettings(page));
106 return static_cast<InternalSettings*>(HeapSupplement<Page>::from(page, supplementName()));
128 if (!Supplement<Page>::from(page, supplementName()))
129 Supplement<Page>::provideTo(page, supplementName(), adoptPtr(new InternalSettingsWrapper(page)));
130 return static_cast<InternalSettingsWrapper*>(Supplement<Page>::from(page, supplementName()))->internalSettings();
134 const char* InternalSettings::supplementName() function in class:blink::InternalSettings
H A DInternalSettings.h135 static const char* supplementName();
/external/chromium_org/third_party/WebKit/Source/modules/geolocation/
H A DGeolocationController.cpp206 const char* GeolocationController::supplementName() function in class:blink::GeolocationController
223 WillBeHeapSupplement<LocalFrame>::provideTo(frame, GeolocationController::supplementName(), GeolocationController::create(frame, client));
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DContextFeatures.h55 static const char* supplementName();
H A DFullscreen.h53 static const char* supplementName();
H A DFullscreen.cpp129 const char* Fullscreen::supplementName() function in class:blink::Fullscreen
139 DocumentSupplement::provideTo(document, supplementName(), adoptPtrWillBeNoop(fullscreen));
147 return static_cast<Fullscreen*>(DocumentSupplement::from(document, supplementName()));
/external/chromium_org/third_party/WebKit/Source/core/fileapi/
H A DFileReader.cpp92 ThrottlingController* controller = static_cast<ThrottlingController*>(WillBeHeapSupplement<LocalFrame>::from(document->frame(), supplementName()));
97 WillBeHeapSupplement<LocalFrame>::provideTo(*document->frame(), supplementName(), adoptPtrWillBeNoop(controller));
103 ThrottlingController* controller = static_cast<ThrottlingController*>(WillBeHeapSupplement<WorkerClients>::from(workerGlobalScope->clients(), supplementName()));
108 WillBeHeapSupplement<WorkerClients>::provideTo(*workerGlobalScope->clients(), supplementName(), adoptPtrWillBeNoop(controller));
209 static const char* supplementName() { return "FileReaderThrottlingController"; } function in class:blink::FINAL
/external/chromium_org/third_party/WebKit/Source/modules/encryptedmedia/
H A DHTMLMediaElementEncryptedMedia.h52 static const char* supplementName();
H A DHTMLMediaElementEncryptedMedia.cpp237 const char* HTMLMediaElementEncryptedMedia::supplementName() function in class:blink::HTMLMediaElementEncryptedMedia
244 HTMLMediaElementEncryptedMedia* supplement = static_cast<HTMLMediaElementEncryptedMedia*>(WillBeHeapSupplement<HTMLMediaElement>::from(element, supplementName()));
247 provideTo(element, supplementName(), adoptPtrWillBeNoop(supplement));
/external/chromium_org/third_party/WebKit/Source/core/imagebitmap/
H A DImageBitmapFactories.cpp236 const char* ImageBitmapFactories::supplementName() function in class:blink::ImageBitmapFactories
253 ImageBitmapFactories* supplement = static_cast<ImageBitmapFactories*>(WillBeHeapSupplement<GlobalObject>::from(object, supplementName()));
256 WillBeHeapSupplement<GlobalObject>::provideTo(object, supplementName(), adoptPtrWillBeNoop(supplement));
H A DImageBitmapFactories.h81 static const char* supplementName();
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DFontFaceSet.cpp561 static const char* supplementName() function in namespace:blink
568 RefPtrWillBeRawPtr<FontFaceSet> fonts = static_cast<FontFaceSet*>(SupplementType::from(document, supplementName()));
571 SupplementType::provideTo(document, supplementName(), fonts);
579 if (FontFaceSet* fonts = static_cast<FontFaceSet*>(SupplementType::from(document, supplementName())))
/external/chromium_org/third_party/WebKit/Source/web/
H A DWebDragData.cpp180 DraggedIsolatedFileSystem::provideTo(*m_private.get(), DraggedIsolatedFileSystem::supplementName(), DraggedIsolatedFileSystem::create(*m_private.get(), filesystemId));
/external/chromium_org/third_party/WebKit/Source/modules/serviceworkers/
H A DServiceWorkerContainerTest.cpp160 m_page->document().DocumentSupplementable::provideSupplement(ServiceWorkerContainerClient::supplementName(), ServiceWorkerContainerClient::create(provider));

Completed in 1208 milliseconds

12345