Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(256)

Unified Diff: third_party/WebKit/Source/core/css/parser/CSSPropertyParser.cpp

Issue 2329463004: ABANDONED CL: Changes needed to make things compile after running rewrite_to_chrome_style tool. (Closed)
Patch Set: More fixes - things build fine at this point. Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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);
« no previous file with comments | « third_party/WebKit/Source/core/css/StyleRule.h ('k') | third_party/WebKit/Source/core/css/parser/CSSTokenizer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698