Searched refs:CSSNamespace (Results 1 - 3 of 3) sorted by relevance

/external/webkit/Source/WebCore/css/
H A DCSSNamespace.h29 struct CSSNamespace { struct in namespace:WebCore
30 WTF_MAKE_NONCOPYABLE(CSSNamespace); WTF_MAKE_FAST_ALLOCATED;
34 OwnPtr<CSSNamespace> parent;
36 CSSNamespace(const AtomicString& prefix, const AtomicString& uri, PassOwnPtr<CSSNamespace> parent) function in struct:WebCore::CSSNamespace
43 CSSNamespace* namespaceForPrefix(const AtomicString& prefix)
45 for (CSSNamespace* candidate = this; candidate; candidate = candidate->parent.get()) {
H A DCSSStyleSheet.h29 struct CSSNamespace;
115 OwnPtr<CSSNamespace> m_namespaces;
H A DCSSStyleSheet.cpp25 #include "CSSNamespace.h"
174 m_namespaces = adoptPtr(new CSSNamespace(prefix, uri, m_namespaces.release()));
189 if (CSSNamespace* namespaceForPrefix = m_namespaces->namespaceForPrefix(prefix))

Completed in 89 milliseconds