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

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

Issue 1481383002: [Experimental] CSSSerializer Proof-of-concept Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: snapshot: top_25 sites ser/dser now works Created 4 years, 11 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/CSSFontFeatureValue.h
diff --git a/third_party/WebKit/Source/core/css/CSSFontFeatureValue.h b/third_party/WebKit/Source/core/css/CSSFontFeatureValue.h
index 719cab61ab4aea789b5ac7e30eb7e28cb3667d11..8e247844c83ff91c10986dc54a6d64543673aa79 100644
--- a/third_party/WebKit/Source/core/css/CSSFontFeatureValue.h
+++ b/third_party/WebKit/Source/core/css/CSSFontFeatureValue.h
@@ -37,6 +37,7 @@ public:
{
return adoptRefWillBeNoop(new CSSFontFeatureValue(tag, value));
}
+ static PassRefPtrWillBeRawPtr<CSSFontFeatureValue> deserializeAfterDispatch(CSSDeserializeStream*);
const AtomicString& tag() const { return m_tag; }
int value() const { return m_value; }
@@ -44,6 +45,8 @@ public:
bool equals(const CSSFontFeatureValue&) const;
+ void serializeAfterDispatch(CSSSerializeStream*) const;
+
DEFINE_INLINE_TRACE_AFTER_DISPATCH() { CSSValue::traceAfterDispatch(visitor); }
private:
« no previous file with comments | « third_party/WebKit/Source/core/css/CSSFontFaceSrcValue.cpp ('k') | third_party/WebKit/Source/core/css/CSSFontFeatureValue.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698