| Index: third_party/WebKit/Source/core/css/parser/CSSSelectorParser.cpp
|
| diff --git a/third_party/WebKit/Source/core/css/parser/CSSSelectorParser.cpp b/third_party/WebKit/Source/core/css/parser/CSSSelectorParser.cpp
|
| index 105b5e4ce2b4d49d6a6aedb5c3124d0316c28fe5..966f590ab34afa60b717c14e09a221bc252a2112 100644
|
| --- a/third_party/WebKit/Source/core/css/parser/CSSSelectorParser.cpp
|
| +++ b/third_party/WebKit/Source/core/css/parser/CSSSelectorParser.cpp
|
| @@ -19,7 +19,7 @@ static void recordSelectorStats(const CSSParserContext& context, const CSSSelect
|
| for (const CSSSelector* selector = selectorList.first(); selector; selector = CSSSelectorList::next(*selector)) {
|
| for (const CSSSelector* current = selector; current ; current = current->tagHistory()) {
|
| UseCounter::Feature feature = UseCounter::NumberOfFeatures;
|
| - switch (current->pseudoType()) {
|
| + switch (current->getPseudoType()) {
|
| case CSSSelector::PseudoUnresolved:
|
| feature = UseCounter::CSSSelectorPseudoUnresolved;
|
| break;
|
| @@ -265,7 +265,7 @@ bool isSimpleSelectorValidAfterPseudoElement(const CSSParserSelector& simpleSele
|
| ASSERT(simpleSelector.selectorList());
|
| ASSERT(simpleSelector.selectorList()->first());
|
| ASSERT(!simpleSelector.selectorList()->first()->tagHistory());
|
| - pseudo = simpleSelector.selectorList()->first()->pseudoType();
|
| + pseudo = simpleSelector.selectorList()->first()->getPseudoType();
|
| }
|
| return isPseudoClassValidAfterPseudoElement(pseudo, compoundPseudoElement);
|
| }
|
|
|