/external/chromium_org/third_party/WebKit/Source/core/dom/ |
ContextFeatures.cpp | 28 #include "core/dom/ContextFeatures.h" 42 const char* ContextFeatures::supplementName() 44 return "ContextFeatures"; 47 ContextFeatures* ContextFeatures::defaultSwitch() 49 DEFINE_STATIC_REF(ContextFeatures, instance, (ContextFeatures::create(ContextFeaturesClient::empty()))); 53 bool ContextFeatures::dialogElementEnabled(Document* document) 57 return document->contextFeatures()->isEnabled(document, DialogElement, RuntimeEnabledFeatures::dialogElementEnabled()); 60 bool ContextFeatures::styleScopedEnabled(Document* document [all...] |
ContextFeatures.h | 38 class ContextFeatures : public RefCountedSupplement<Page, ContextFeatures> { 50 static ContextFeatures* defaultSwitch(); 51 static PassRefPtr<ContextFeatures> create(ContextFeaturesClient*); 63 explicit ContextFeatures(ContextFeaturesClient* client) 72 inline void ContextFeatures::hostDestroyed() 84 virtual bool isEnabled(Document*, ContextFeatures::FeatureType, bool defaultValue) { return defaultValue; } 91 inline PassRefPtr<ContextFeatures> ContextFeatures::create(ContextFeaturesClient* client) 93 return adoptRef(new ContextFeatures(client)) [all...] |
DOMImplementation.cpp | 34 #include "core/dom/ContextFeatures.h" 210 doc->setContextFeatures(m_document.contextFeatures()); 318 d->setContextFeatures(m_document.contextFeatures());
|
Document.h | 76 class ContextFeatures; [all...] |
/external/chromium_org/third_party/WebKit/Source/web/ |
ContextFeaturesClientImpl.cpp | 84 Entry& entryFor(ContextFeatures::FeatureType type) 87 ASSERT_WITH_SECURITY_IMPLICATION(index < ContextFeatures::FeatureTypeSize); 95 Entry m_entries[ContextFeatures::FeatureTypeSize]; 120 for (size_t i = 0; i < ContextFeatures::FeatureTypeSize; ++i) 124 bool ContextFeaturesClientImpl::isEnabled(Document* document, ContextFeatures::FeatureType type, bool defaultValue) 137 bool ContextFeaturesClientImpl::askIfIsEnabled(Document* document, ContextFeatures::FeatureType type, bool defaultValue) 149 case ContextFeatures::StyleScoped: 151 case ContextFeatures::MutationEvents: 153 case ContextFeatures::PushState: 163 case ContextFeatures::StyleScoped [all...] |
ContextFeaturesClientImpl.h | 34 #include "core/dom/ContextFeatures.h" 46 virtual bool isEnabled(WebCore::Document*, WebCore::ContextFeatures::FeatureType, bool defaultValue) OVERRIDE; 51 bool askIfIsEnabled(WebCore::Document*, WebCore::ContextFeatures::FeatureType, bool defaultValue);
|
WebPagePopupImpl.cpp | 39 #include "core/dom/ContextFeatures.h" 145 virtual bool isEnabled(Document*, ContextFeatures::FeatureType, bool) OVERRIDE; 148 bool PagePopupFeaturesClient::isEnabled(Document*, ContextFeatures::FeatureType type, bool defaultValue) 150 if (type == ContextFeatures::PagePopup)
|
/external/chromium_org/third_party/WebKit/Source/build/scripts/templates/ |
ElementFactory.cpp.tmpl | 15 #include "core/dom/ContextFeatures.h" 45 if (!ContextFeatures::{{tag.contextConditional}}Enabled(&document))
|
ElementWrapperFactory.cpp.tmpl | 17 #include "core/dom/ContextFeatures.h" 38 if (!ContextFeatures::{{list[0].contextConditional}}Enabled(&element->document()))
|
/external/chromium_org/third_party/WebKit/Source/core/html/ |
HTMLStyleElement.cpp | 30 #include "core/dom/ContextFeatures.h" 75 } else if (name == scopedAttr && ContextFeatures::styleScopedEnabled(&document())) { 88 ASSERT(ContextFeatures::styleScopedEnabled(&document())); 162 ASSERT(m_scopedStyleRegistrationState != NotRegistered || !ContextFeatures::styleScopedEnabled(&document())); 231 return fastHasAttribute(scopedAttr) && ContextFeatures::styleScopedEnabled(&document());
|
/external/chromium_org/third_party/WebKit/Source/bindings/ |
IDLExtendedAttributes.txt | 73 # ContextFeatures::FeatureType in Source/core/dom/ContextFeatures.h
|
/external/chromium_org/third_party/WebKit/Source/bindings/v8/custom/ |
V8ErrorEventCustom.cpp | 43 #include "core/dom/ContextFeatures.h"
|
V8CustomEventCustom.cpp | 42 #include "core/dom/ContextFeatures.h"
|
/external/chromium_org/third_party/WebKit/Source/bindings/tests/results/ |
V8TestInterfaceDoNotCheckConstants.cpp | 39 #include "core/dom/ContextFeatures.h"
|
V8TestInterfaceEmpty.cpp | 39 #include "core/dom/ContextFeatures.h"
|
V8TestInterfaceEventTarget.cpp | 39 #include "core/dom/ContextFeatures.h"
|
V8TestException.cpp | 39 #include "core/dom/ContextFeatures.h"
|
V8TestInterfaceConstructor3.cpp | 40 #include "core/dom/ContextFeatures.h"
|
V8TestInterfaceCustomConstructor.cpp | 40 #include "core/dom/ContextFeatures.h"
|
V8TestInterfaceNamedConstructor.cpp | 40 #include "core/dom/ContextFeatures.h"
|
V8TestInterfacePython2.cpp | 41 #include "core/dom/ContextFeatures.h"
|
V8TestCustomAccessors.cpp | 39 #include "core/dom/ContextFeatures.h"
|
V8TestInterface.cpp | 49 #include "core/dom/ContextFeatures.h" [all...] |
V8TestInterfaceConstructor.cpp | 42 #include "core/dom/ContextFeatures.h"
|
/external/chromium_org/third_party/WebKit/Source/bindings/scripts/unstable/ |
v8_utilities.py | 206 return 'ContextFeatures::%sEnabled' % uncapitalize(feature_name)
|