| Index: Source/core/css/ElementRuleCollector.h
|
| diff --git a/Source/core/css/ElementRuleCollector.h b/Source/core/css/ElementRuleCollector.h
|
| index 65aee857f979fc18460938ca5194d169c758a846..6f55b21aa12176fde9245eb024ff7ee1d203b7a2 100644
|
| --- a/Source/core/css/ElementRuleCollector.h
|
| +++ b/Source/core/css/ElementRuleCollector.h
|
| @@ -48,8 +48,7 @@ class StaticCSSRuleList;
|
| class ElementRuleCollector {
|
| WTF_MAKE_NONCOPYABLE(ElementRuleCollector);
|
| public:
|
| - // FIXME: This should not need an InspectorCSSOMWrappers parameter.
|
| - ElementRuleCollector(const ElementResolveContext&, const SelectorFilter&, RenderStyle*, InspectorCSSOMWrappers&);
|
| + ElementRuleCollector(const ElementResolveContext&, const SelectorFilter&, RenderStyle*);
|
|
|
| void setBehaviorAtBoundary(SelectorChecker::BehaviorAtBoundary boundary) { m_behaviorAtBoundary = boundary; }
|
| SelectorChecker::BehaviorAtBoundary behaviorAtBoundary() const { return m_behaviorAtBoundary; }
|
| @@ -90,7 +89,6 @@ private:
|
| private:
|
| const ElementResolveContext& m_context;
|
| const SelectorFilter& m_selectorFilter;
|
| - InspectorCSSOMWrappers& m_inspectorCSSOMWrappers; // This should not be needed.
|
| RefPtr<RenderStyle> m_style; // FIXME: This can be mutated during matching!
|
|
|
| const RenderRegion* m_regionForStyling;
|
|
|