| Index: sky/engine/core/css/RuleSet.h
|
| diff --git a/sky/engine/core/css/RuleSet.h b/sky/engine/core/css/RuleSet.h
|
| index e5fd78608abb486d7c4330b56a5b4f87d8806cb5..077671d2e7933d84b61e67e84c2f2ab359f912c5 100644
|
| --- a/sky/engine/core/css/RuleSet.h
|
| +++ b/sky/engine/core/css/RuleSet.h
|
| @@ -22,11 +22,10 @@
|
| #ifndef SKY_ENGINE_CORE_CSS_RULESET_H_
|
| #define SKY_ENGINE_CORE_CSS_RULESET_H_
|
|
|
| -#include "sky/engine/core/css/MediaQueryEvaluator.h"
|
| #include "sky/engine/core/css/RuleFeature.h"
|
| #include "sky/engine/core/css/StyleRule.h"
|
| #include "sky/engine/core/css/StyleRuleKeyframes.h"
|
| -#include "sky/engine/core/css/resolver/MediaQueryResult.h"
|
| +#include "sky/engine/platform/heap/Handle.h"
|
| #include "sky/engine/wtf/Forward.h"
|
| #include "sky/engine/wtf/HashMap.h"
|
| #include "sky/engine/wtf/LinkedStack.h"
|
| @@ -85,7 +84,6 @@ public:
|
| const Vector<RuleData>* hostRules() const { ASSERT(!m_pendingRules); return &m_hostRules; }
|
| const Vector<RawPtr<StyleRuleFontFace> >& fontFaceRules() const { return m_fontFaceRules; }
|
| const Vector<RawPtr<StyleRuleKeyframes> >& keyframesRules() const { return m_keyframesRules; }
|
| - const MediaQueryResultList& viewportDependentMediaQueryResults() const { return m_viewportDependentMediaQueryResults; }
|
|
|
| void compactRulesIfNeeded()
|
| {
|
| @@ -146,8 +144,6 @@ private:
|
|
|
| RuleFeatureSet m_features;
|
|
|
| - MediaQueryResultList m_viewportDependentMediaQueryResults;
|
| -
|
| unsigned m_ruleCount;
|
| OwnPtr<PendingRuleMaps> m_pendingRules;
|
|
|
|
|