| Index: third_party/WebKit/Source/core/css/parser/CSSPropertyParser.cpp
|
| diff --git a/third_party/WebKit/Source/core/css/parser/CSSPropertyParser.cpp b/third_party/WebKit/Source/core/css/parser/CSSPropertyParser.cpp
|
| index 19d6e7221ccd8d77e814bd327435312b7f3cbe94..1b2c87f8f7db8d926f38c4a1e288f301ee5152f0 100644
|
| --- a/third_party/WebKit/Source/core/css/parser/CSSPropertyParser.cpp
|
| +++ b/third_party/WebKit/Source/core/css/parser/CSSPropertyParser.cpp
|
| @@ -1834,7 +1834,7 @@ const CSSValue* CSSPropertyParser::parseSingleValue(
|
| // other properties, those properties will be taken out of the switch
|
| // statement.
|
| const CSSPropertyDescriptor& cssPropertyDesc =
|
| - CSSPropertyDescriptor::get(property);
|
| + CSSPropertyDescriptor::Get(property);
|
| if (cssPropertyDesc.parseSingleValue) {
|
| DCHECK(m_context);
|
| return cssPropertyDesc.parseSingleValue(m_range, *m_context);
|
| @@ -3366,7 +3366,7 @@ bool CSSPropertyParser::parseShorthand(CSSPropertyID unresolvedProperty,
|
| // other properties, those properties will be taken out of the switch
|
| // statement.
|
| const CSSPropertyDescriptor& cssPropertyDesc =
|
| - CSSPropertyDescriptor::get(property);
|
| + CSSPropertyDescriptor::Get(property);
|
| if (cssPropertyDesc.parseShorthand)
|
| return cssPropertyDesc.parseShorthand(important, m_range, m_context);
|
|
|
|
|