| Index: third_party/WebKit/Source/core/css/CSSSelector.h
|
| diff --git a/third_party/WebKit/Source/core/css/CSSSelector.h b/third_party/WebKit/Source/core/css/CSSSelector.h
|
| index f4feecde158591b47c6845dcc21ce06cedf170ca..91e93c38e4eeba324faa946878a8e2e2a311335b 100644
|
| --- a/third_party/WebKit/Source/core/css/CSSSelector.h
|
| +++ b/third_party/WebKit/Source/core/css/CSSSelector.h
|
| @@ -284,7 +284,7 @@ class CORE_EXPORT CSSSelector {
|
| void SetSelectorList(std::unique_ptr<CSSSelectorList>);
|
|
|
| void SetNth(int a, int b);
|
| - bool MatchNth(int count) const;
|
| + bool MatchNth(unsigned count) const;
|
|
|
| bool IsAdjacentSelector() const {
|
| return relation_ == kDirectAdjacent || relation_ == kIndirectAdjacent;
|
| @@ -378,7 +378,7 @@ class CORE_EXPORT CSSSelector {
|
| }
|
| ~RareData();
|
|
|
| - bool MatchNth(int count);
|
| + bool MatchNth(unsigned count);
|
| int NthAValue() const { return bits_.nth_.a_; }
|
| int NthBValue() const { return bits_.nth_.b_; }
|
|
|
|
|