HomeSort by relevance Sort by last modified time
    Searched refs:ContextFeatures (Results 1 - 17 of 17) sorted by null

  /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_LOCAL(RefPtr<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...]
Document.h 73 class ContextFeatures;
    [all...]
Document.cpp 56 #include "core/dom/ContextFeatures.h"
385 , m_contextFeatures(ContextFeatures::defaultSwitch())
585 m_contextFeatures = ContextFeatures::defaultSwitch();
    [all...]
  /external/chromium_org/third_party/WebKit/Source/web/
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);
ContextFeaturesClientImpl.cpp 83 Entry& entryFor(ContextFeatures::FeatureType type)
86 ASSERT_WITH_SECURITY_IMPLICATION(index < ContextFeatures::FeatureTypeSize);
94 Entry m_entries[ContextFeatures::FeatureTypeSize];
119 for (size_t i = 0; i < ContextFeatures::FeatureTypeSize; ++i)
123 bool ContextFeaturesClientImpl::isEnabled(Document* document, ContextFeatures::FeatureType type, bool defaultValue)
136 bool ContextFeaturesClientImpl::askIfIsEnabled(Document* document, ContextFeatures::FeatureType type, bool defaultValue)
142 case ContextFeatures::StyleScoped:
144 case ContextFeatures::MutationEvents:
146 case ContextFeatures::PushState:
WebPagePopupImpl.cpp 42 #include "core/dom/ContextFeatures.h"
149 virtual bool isEnabled(Document*, ContextFeatures::FeatureType, bool) OVERRIDE;
152 bool PagePopupFeaturesClient::isEnabled(Document*, ContextFeatures::FeatureType type, bool defaultValue)
154 if (type == ContextFeatures::PagePopup)
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLStyleElement.cpp 30 #include "core/dom/ContextFeatures.h"
76 } else if (name == scopedAttr && ContextFeatures::styleScopedEnabled(document())) {
89 ASSERT(ContextFeatures::styleScopedEnabled(document()));
160 ASSERT(m_scopedStyleRegistrationState != NotRegistered || !ContextFeatures::styleScopedEnabled(document()));
231 return fastHasAttribute(scopedAttr) && ContextFeatures::styleScopedEnabled(document());
  /external/chromium_org/third_party/WebKit/Source/bindings/tests/results/
V8TestInterface.cpp 37 #include "core/dom/ContextFeatures.h"
    [all...]
V8TestObject.cpp 55 #include "core/dom/ContextFeatures.h"
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/scripts/
make_names.pl 373 if (!ContextFeatures::${contextConditional}Enabled(document))
804 #include "ContextFeatures.h"
994 if (!ContextFeatures::${contextConditional}Enabled(element->document()))
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/
webcore_dom.target.darwin-arm.mk 46 third_party/WebKit/Source/core/dom/ContextFeatures.cpp \
webcore_dom.target.darwin-mips.mk 46 third_party/WebKit/Source/core/dom/ContextFeatures.cpp \
webcore_dom.target.darwin-x86.mk 46 third_party/WebKit/Source/core/dom/ContextFeatures.cpp \
webcore_dom.target.linux-arm.mk 46 third_party/WebKit/Source/core/dom/ContextFeatures.cpp \
webcore_dom.target.linux-mips.mk 46 third_party/WebKit/Source/core/dom/ContextFeatures.cpp \
webcore_dom.target.linux-x86.mk 46 third_party/WebKit/Source/core/dom/ContextFeatures.cpp \

Completed in 485 milliseconds