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

Unified Diff: third_party/WebKit/Source/core/css/properties/CSSPropertyAPIContent.cpp

Issue 2967163003: Use cssvalue::CounterValue instead of blink::CSSCounterValue (Closed)
Patch Set: Created 3 years, 5 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/css/properties/CSSPropertyAPIContent.cpp
diff --git a/third_party/WebKit/Source/core/css/properties/CSSPropertyAPIContent.cpp b/third_party/WebKit/Source/core/css/properties/CSSPropertyAPIContent.cpp
index 15d9d08ef57b3b898195ec238a57737b0fb83390..c7ad5a8e16d8d599951115c306fea751c2e57406 100644
--- a/third_party/WebKit/Source/core/css/properties/CSSPropertyAPIContent.cpp
+++ b/third_party/WebKit/Source/core/css/properties/CSSPropertyAPIContent.cpp
@@ -15,8 +15,6 @@
class CSSParserLocalContext;
namespace blink {
-using CSSCounterValue = cssvalue::CSSCounterValue;
-
namespace {
CSSValue* ConsumeAttr(CSSParserTokenRange args,
@@ -67,7 +65,7 @@ CSSValue* ConsumeCounterContent(CSSParserTokenRange args, bool counters) {
if (!args.AtEnd())
return nullptr;
- return blink::CSSCounterValue::Create(identifier, list_style, separator);
+ return cssvalue::CSSCounterValue::Create(identifier, list_style, separator);
}
} // namespace
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698