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

Unified Diff: third_party/WebKit/Source/core/css/CSSStringValue.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/CSSStringValue.h
diff --git a/third_party/WebKit/Source/core/css/CSSStringValue.h b/third_party/WebKit/Source/core/css/CSSStringValue.h
index 06bc70e1f8317bb31e5105efe74e55500a0f02d6..71608f10bc34317fb9c40809960988c930cc3f73 100644
--- a/third_party/WebKit/Source/core/css/CSSStringValue.h
+++ b/third_party/WebKit/Source/core/css/CSSStringValue.h
@@ -17,6 +17,7 @@ public:
{
return adoptRefWillBeNoop(new CSSStringValue(str));
}
+ static PassRefPtrWillBeRawPtr<CSSStringValue> deserializeAfterDispatch(CSSDeserializeStream*);
String value() const { return m_string; }
@@ -27,6 +28,8 @@ public:
return m_string == other.m_string;
}
+ void serializeAfterDispatch(CSSSerializeStream*) const;
+
DECLARE_TRACE_AFTER_DISPATCH();
private:
« no previous file with comments | « third_party/WebKit/Source/core/css/CSSShadowValue.cpp ('k') | third_party/WebKit/Source/core/css/CSSStringValue.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698