OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:DocumentSupplement
(Results
1 - 18
of
18
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/dom/
DocumentSupplementable.h
38
typedef Supplement<Document>
DocumentSupplement
;
WheelController.h
38
class WheelController : public
DocumentSupplement
, public DOMWindowLifecycleObserver {
CSSSelectorWatch.h
46
class CSSSelectorWatch : public
DocumentSupplement
{
TouchController.h
43
class TouchController : public
DocumentSupplement
, public DOMWindowLifecycleObserver, public DocumentLifecycleObserver {
WheelController.cpp
55
WheelController* controller = static_cast<WheelController*>(
DocumentSupplement
::from(document, supplementName()));
58
DocumentSupplement
::provideTo(document, supplementName(), adoptPtr(controller));
CSSSelectorWatch.cpp
57
CSSSelectorWatch* watch = static_cast<CSSSelectorWatch*>(
DocumentSupplement
::from(&document, kSupplementName));
60
DocumentSupplement
::provideTo(&document, kSupplementName, adoptPtr(watch));
TouchController.cpp
57
TouchController* controller = static_cast<TouchController*>(
DocumentSupplement
::from(document, supplementName()));
60
DocumentSupplement
::provideTo(document, supplementName(), adoptPtr(controller));
FullscreenElementStack.h
50
: public
DocumentSupplement
FullscreenElementStack.cpp
68
DocumentSupplement
::provideTo(document, supplementName(), adoptPtr(fullscreen));
76
return static_cast<FullscreenElementStack*>(
DocumentSupplement
::from(document, supplementName()));
/external/chromium_org/third_party/WebKit/Source/core/xml/
DocumentXPathEvaluator.h
39
class DocumentXPathEvaluator : public
DocumentSupplement
{
DocumentXPathEvaluator.cpp
46
DocumentXPathEvaluator* cache = static_cast<DocumentXPathEvaluator*>(
DocumentSupplement
::from(document, supplementName()));
49
DocumentSupplement
::provideTo(document, supplementName(), adoptPtr(cache));
/external/chromium_org/third_party/WebKit/Source/modules/device_orientation/
DeviceMotionController.h
40
class DeviceMotionController : public DeviceSensorEventController, public
DocumentSupplement
, public DOMWindowLifecycleObserver {
DeviceOrientationController.h
39
class DeviceOrientationController : public DeviceSensorEventController, public
DocumentSupplement
, public DOMWindowLifecycleObserver {
DeviceMotionController.cpp
63
DeviceMotionController* controller = static_cast<DeviceMotionController*>(
DocumentSupplement
::from(document, supplementName()));
66
DocumentSupplement
::provideTo(document, supplementName(), adoptPtr(controller));
DeviceOrientationController.cpp
63
DeviceOrientationController* controller = static_cast<DeviceOrientationController*>(
DocumentSupplement
::from(document, supplementName()));
66
DocumentSupplement
::provideTo(document, supplementName(), adoptPtr(controller));
/external/chromium_org/third_party/WebKit/Source/core/html/
HTMLImportsController.h
51
class HTMLImportsController : public HTMLImportRoot, public
DocumentSupplement
{
HTMLImportsController.cpp
46
DocumentSupplement
::provideTo(master, name, controller.release());
/external/chromium_org/third_party/WebKit/Source/web/
ContextFeaturesClientImpl.cpp
44
class ContextFeaturesCache : public
DocumentSupplement
{
105
ContextFeaturesCache* cache = static_cast<ContextFeaturesCache*>(
DocumentSupplement
::from(document, supplementName()));
108
DocumentSupplement
::provideTo(document, supplementName(), adoptPtr(cache));
Completed in 274 milliseconds