Home
last modified time | relevance | path

Searched refs:DocumentSupplement (Results 1 – 18 of 18) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/web/
DContextFeaturesClientImpl.cpp44 class ContextFeaturesCache : public DocumentSupplement {
105 …ContextFeaturesCache* cache = static_cast<ContextFeaturesCache*>(DocumentSupplement::from(document… in from()
108 DocumentSupplement::provideTo(document, supplementName(), adoptPtr(cache)); in from()
/external/chromium_org/third_party/WebKit/Source/modules/device_orientation/
DDeviceMotionController.cpp63 …DeviceMotionController* controller = static_cast<DeviceMotionController*>(DocumentSupplement::from… in from()
66 DocumentSupplement::provideTo(document, supplementName(), adoptPtr(controller)); in from()
DDeviceOrientationController.cpp63 …Controller* controller = static_cast<DeviceOrientationController*>(DocumentSupplement::from(docume… in from()
66 DocumentSupplement::provideTo(document, supplementName(), adoptPtr(controller)); in from()
DDeviceOrientationController.h39 class DeviceOrientationController : public DeviceSensorEventController, public DocumentSupplement, …
DDeviceMotionController.h40 class DeviceMotionController : public DeviceSensorEventController, public DocumentSupplement, publi…
/external/chromium_org/third_party/WebKit/Source/core/xml/
DDocumentXPathEvaluator.cpp46 …DocumentXPathEvaluator* cache = static_cast<DocumentXPathEvaluator*>(DocumentSupplement::from(docu… in from()
49 DocumentSupplement::provideTo(document, supplementName(), adoptPtr(cache)); in from()
DDocumentXPathEvaluator.h39 class DocumentXPathEvaluator : public DocumentSupplement {
/external/chromium_org/third_party/WebKit/Source/core/dom/
DWheelController.cpp55 …WheelController* controller = static_cast<WheelController*>(DocumentSupplement::from(document, sup… in from()
58 DocumentSupplement::provideTo(document, supplementName(), adoptPtr(controller)); in from()
DCSSSelectorWatch.cpp57 …CSSSelectorWatch* watch = static_cast<CSSSelectorWatch*>(DocumentSupplement::from(&document, kSupp… in from()
60 DocumentSupplement::provideTo(&document, kSupplementName, adoptPtr(watch)); in from()
DDocumentSupplementable.h38 typedef Supplement<Document> DocumentSupplement; typedef
DTouchController.cpp57 …TouchController* controller = static_cast<TouchController*>(DocumentSupplement::from(document, sup… in from()
60 DocumentSupplement::provideTo(document, supplementName(), adoptPtr(controller)); in from()
DWheelController.h38 class WheelController : public DocumentSupplement, public DOMWindowLifecycleObserver {
DCSSSelectorWatch.h46 class CSSSelectorWatch : public DocumentSupplement {
DTouchController.h43 class TouchController : public DocumentSupplement, public DOMWindowLifecycleObserver, public Docume…
DFullscreenElementStack.h50 : public DocumentSupplement
DFullscreenElementStack.cpp68 DocumentSupplement::provideTo(document, supplementName(), adoptPtr(fullscreen)); in from()
76 … return static_cast<FullscreenElementStack*>(DocumentSupplement::from(document, supplementName())); in fromIfExistsSlow()
/external/chromium_org/third_party/WebKit/Source/core/html/
DHTMLImportsController.h51 class HTMLImportsController : public HTMLImportRoot, public DocumentSupplement {
DHTMLImportsController.cpp46 DocumentSupplement::provideTo(master, name, controller.release()); in provideTo()