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

Unified Diff: Source/core/css/CSSCounterValue.h

Issue 1314353002: Inline CSSCounterValue::listStyle() (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@clean_up_get_string_value
Patch Set: Small fix Created 5 years, 4 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 | Source/core/css/CSSCounterValue.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/css/CSSCounterValue.h
diff --git a/Source/core/css/CSSCounterValue.h b/Source/core/css/CSSCounterValue.h
index b7eb49ffbd7d3092bc1cffe557d8d566a18f7be0..838640ef4fa2c90541d471adaf0f0810a3636f88 100644
--- a/Source/core/css/CSSCounterValue.h
+++ b/Source/core/css/CSSCounterValue.h
@@ -35,11 +35,9 @@ public:
}
String identifier() const { return m_identifier->getStringValue(); }
- String listStyle() const { return m_listStyle->cssText(); }
+ CSSValueID listStyle() const { return m_listStyle->getValueID(); }
String separator() const { return m_separator->getStringValue(); }
- CSSValueID listStyleIdent() const { return m_listStyle->getValueID(); }
-
bool equals(const CSSCounterValue& other) const
{
return identifier() == other.identifier()
« no previous file with comments | « no previous file | Source/core/css/CSSCounterValue.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698