| Index: sky/engine/core/css/resolver/ScopedStyleResolver.h
|
| diff --git a/sky/engine/core/css/resolver/ScopedStyleResolver.h b/sky/engine/core/css/resolver/ScopedStyleResolver.h
|
| index 66205f2fb3ce14a57aeef8454de818869d8ff22a..b7ee4fe9052d9711d31bda76699a9a8e64b763a2 100644
|
| --- a/sky/engine/core/css/resolver/ScopedStyleResolver.h
|
| +++ b/sky/engine/core/css/resolver/ScopedStyleResolver.h
|
| @@ -41,7 +41,6 @@ namespace blink {
|
|
|
| class CSSStyleSheet;
|
| class ContainerNode;
|
| -class HTMLStyleElement;
|
| class StyleSheetContents;
|
|
|
| // This class selects a RenderStyle for a given element based on a collection of stylesheets.
|
| @@ -67,16 +66,12 @@ public:
|
|
|
| const Vector<RefPtr<CSSStyleSheet>>& authorStyleSheets() const { return m_authorStyleSheets; }
|
|
|
| - void addStyleSheetCandidateNode(HTMLStyleElement&);
|
| - void removeStyleSheetCandidateNode(HTMLStyleElement&);
|
| -
|
| private:
|
| explicit ScopedStyleResolver(TreeScope&);
|
|
|
| void collectStyleSheets(Vector<RefPtr<CSSStyleSheet>>& candidateSheets);
|
|
|
| TreeScope& m_scope;
|
| - DocumentOrderedList m_styleSheetCandidateNodes;
|
| Vector<RefPtr<CSSStyleSheet>> m_authorStyleSheets;
|
| };
|
|
|
|
|