Chromium Code Reviews| Index: third_party/WebKit/Source/build/scripts/make_css_value_keywords.py |
| diff --git a/third_party/WebKit/Source/build/scripts/make_css_value_keywords.py b/third_party/WebKit/Source/build/scripts/make_css_value_keywords.py |
| index 96546ca5997a2afb3e2acca7b2a127954d50af84..65ff05f3f043e24e416d31f85086acc4b94b6429 100755 |
| --- a/third_party/WebKit/Source/build/scripts/make_css_value_keywords.py |
| +++ b/third_party/WebKit/Source/build/scripts/make_css_value_keywords.py |
| @@ -94,7 +94,7 @@ const Value* FindValue(const char* str, unsigned int len) { |
| } |
| const char* getValueName(CSSValueID id) { |
| - ASSERT(id > 0 && id < numCSSValueKeywords); |
| + DCHECK(id > 0 && id < numCSSValueKeywords); |
|
haraken
2017/05/19 17:52:03
Split the dcheck into two dchecks. The same commen
|
| return valueListStringPool + valueListStringOffsets[id - 1]; |
| } |