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

Unified Diff: Source/core/css/CSSFontFeatureValue.cpp

Issue 1164573002: CSSValue Immediates: Change CSSValue to an object instead of a pointer (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebase Created 5 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 | « Source/core/css/CSSFontFeatureValue.h ('k') | Source/core/css/CSSGradientValue.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/css/CSSFontFeatureValue.cpp
diff --git a/Source/core/css/CSSFontFeatureValue.cpp b/Source/core/css/CSSFontFeatureValue.cpp
index 153c82ccc221ac807e5d45e1f495fb23ef766dce..da94d5071dc871c0fb2ca0e3fcf476a83b8fa4aa 100644
--- a/Source/core/css/CSSFontFeatureValue.cpp
+++ b/Source/core/css/CSSFontFeatureValue.cpp
@@ -31,7 +31,7 @@
namespace blink {
CSSFontFeatureValue::CSSFontFeatureValue(const AtomicString& tag, int value)
- : CSSValue(FontFeatureClass)
+ : CSSValueObject(FontFeatureClass)
, m_tag(tag)
, m_value(value)
{
« no previous file with comments | « Source/core/css/CSSFontFeatureValue.h ('k') | Source/core/css/CSSGradientValue.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698