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

/external/chromium_org/third_party/WebKit/Source/core/css/resolver/
H A DScopedStyleResolver.h45 class ScopedStyleResolver { class in namespace:WebCore
46 WTF_MAKE_NONCOPYABLE(ScopedStyleResolver); WTF_MAKE_FAST_ALLOCATED;
48 static PassOwnPtr<ScopedStyleResolver> create(ContainerNode& scopingNode) { return adoptPtr(new ScopedStyleResolver(scopingNode)); }
54 void setParent(ScopedStyleResolver* newParent) { m_parent = newParent; }
55 ScopedStyleResolver* parent() { return m_parent; }
69 explicit ScopedStyleResolver(ContainerNode& scopingNode) : m_scopingNode(scopingNode), m_parent(0) { } function in class:WebCore::ScopedStyleResolver
72 ScopedStyleResolver* m_parent;

Completed in 116 milliseconds