Searched defs:ScopedStyleResolver (Results 1 - 1 of 1) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/css/resolver/
H A DScopedStyleResolver.h50 class ScopedStyleResolver { class in namespace:WebCore
51 WTF_MAKE_NONCOPYABLE(ScopedStyleResolver); WTF_MAKE_FAST_ALLOCATED;
53 static PassOwnPtr<ScopedStyleResolver> create(const ContainerNode* scopingNode) { return adoptPtr(new ScopedStyleResolver(scopingNode)); }
60 void setParent(ScopedStyleResolver* newParent) { m_parent = newParent; }
61 ScopedStyleResolver* parent() { return m_parent; }
82 ScopedStyleResolver() : m_scopingNode(0), m_parent(0) { } function in class:WebCore::ScopedStyleResolver
83 ScopedStyleResolver(const ContainerNode* scopingNode) : m_scopingNode(scopingNode), m_parent(0) { } function in class:WebCore::ScopedStyleResolver
89 ScopedStyleResolver* m_parent;
103 ScopedStyleResolver* ensureScopedStyleResolve
[all...]

Completed in 75 milliseconds