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

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

Issue 1373433002: Split out CSSPrimitiveValue's PropertyID into CSSCustomIdentValue (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@split_string
Patch Set: Created 5 years, 3 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/CSSCounterValue.h
diff --git a/third_party/WebKit/Source/core/css/CSSCounterValue.h b/third_party/WebKit/Source/core/css/CSSCounterValue.h
index b60989b9326f78aff4816dabfd75c84b56e0b7a6..d79a4dfe45a14fbd2b7f215214e9beae3f5d2bed 100644
--- a/third_party/WebKit/Source/core/css/CSSCounterValue.h
+++ b/third_party/WebKit/Source/core/css/CSSCounterValue.h
@@ -22,7 +22,7 @@
#define CSSCounterValue_h
#include "core/css/CSSPrimitiveValue.h"
-#include "core/css/CSSStringValueBase.h"
+#include "core/css/CSSStringValues.h"
#include "core/css/CSSValue.h"
#include "wtf/text/WTFString.h"
@@ -35,9 +35,9 @@ public:
return adoptRefWillBeNoop(new CSSCounterValue(identifier, listStyle, separator));
}
- String identifier() const { return m_identifier->value(); }
+ String identifier() const { return m_identifier->string(); }
CSSValueID listStyle() const { return m_listStyle->getValueID(); }
- String separator() const { return m_separator->value(); }
+ String separator() const { return m_separator->string(); }
bool equals(const CSSCounterValue& other) const
{

Powered by Google App Engine
This is Rietveld 408576698