Index: third_party/WebKit/Source/core/css/parser/CSSParserSelector.h |
diff --git a/third_party/WebKit/Source/core/css/parser/CSSParserSelector.h b/third_party/WebKit/Source/core/css/parser/CSSParserSelector.h |
index bdc612129523d2246b3c984e409c3326369b81fe..48250ca0a49d3600f744fef5fa75e831c04b0dc1 100644 |
--- a/third_party/WebKit/Source/core/css/parser/CSSParserSelector.h |
+++ b/third_party/WebKit/Source/core/css/parser/CSSParserSelector.h |
@@ -29,6 +29,8 @@ |
namespace blink { |
+class CSSParserContext; |
+ |
class CORE_EXPORT CSSParserSelector { |
WTF_MAKE_NONCOPYABLE(CSSParserSelector); |
USING_FAST_MALLOC(CSSParserSelector); |
@@ -74,8 +76,9 @@ class CORE_EXPORT CSSParserSelector { |
} |
void UpdatePseudoType(const AtomicString& value, |
+ const CSSParserContext& context, |
bool has_arguments = false) const { |
- selector_->UpdatePseudoType(value, has_arguments); |
+ selector_->UpdatePseudoType(value, context, has_arguments); |
} |
void AdoptSelectorVector( |