| Index: third_party/WebKit/Source/core/css/parser/CSSParser.cpp
|
| diff --git a/third_party/WebKit/Source/core/css/parser/CSSParser.cpp b/third_party/WebKit/Source/core/css/parser/CSSParser.cpp
|
| index 97f94ae934f7cf4144b713c6587e0e076dcdae85..85f65f96bbb96e5520c57eb9eccf4203051cb285 100644
|
| --- a/third_party/WebKit/Source/core/css/parser/CSSParser.cpp
|
| +++ b/third_party/WebKit/Source/core/css/parser/CSSParser.cpp
|
| @@ -31,10 +31,10 @@ void CSSParser::parseDeclarationListForInspector(const CSSParserContext& context
|
| CSSParserImpl::parseDeclarationListForInspector(declaration, context, observer);
|
| }
|
|
|
| -CSSSelectorList CSSParser::parseSelector(const CSSParserContext& context, const String& selector)
|
| +CSSSelectorList CSSParser::parseSelector(const CSSParserContext& context, StyleSheetContents* styleSheetContents, const String& selector)
|
| {
|
| CSSTokenizer::Scope scope(selector);
|
| - return CSSSelectorParser::parseSelector(scope.tokenRange(), context, nullptr);
|
| + return CSSSelectorParser::parseSelector(scope.tokenRange(), context, styleSheetContents);
|
| }
|
|
|
| PassRefPtrWillBeRawPtr<StyleRuleBase> CSSParser::parseRule(const CSSParserContext& context, StyleSheetContents* styleSheet, const String& rule)
|
|
|