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

Unified Diff: third_party/WebKit/Source/core/css/cssom/CSSTokenStreamValue.h

Issue 2251663002: [Typed-OM] Get CSSTokenStreamValue from StyleMap (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Change test to expect CSSTokenStreamValue Created 4 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
Index: third_party/WebKit/Source/core/css/cssom/CSSTokenStreamValue.h
diff --git a/third_party/WebKit/Source/core/css/cssom/CSSTokenStreamValue.h b/third_party/WebKit/Source/core/css/cssom/CSSTokenStreamValue.h
index cead83b88fe6e72bcd5d408f786c4bb5fb18aef7..66c974447de67278e85527dd930424b97641beba 100644
--- a/third_party/WebKit/Source/core/css/cssom/CSSTokenStreamValue.h
+++ b/third_party/WebKit/Source/core/css/cssom/CSSTokenStreamValue.h
@@ -7,7 +7,9 @@
#include "bindings/core/v8/Iterable.h"
#include "bindings/core/v8/StringOrCSSVariableReferenceValue.h"
+#include "core/css/CSSVariableReferenceValue.h"
#include "core/css/cssom/CSSStyleValue.h"
+#include "core/css/parser/CSSParserTokenRange.h"
Timothy Loh 2016/08/29 03:09:18 this include shouldn't be needed
#include "wtf/Vector.h"
namespace blink {
@@ -21,6 +23,8 @@ public:
return new CSSTokenStreamValue(fragments);
}
+ static CSSTokenStreamValue* fromCSSValue(const CSSVariableReferenceValue&);
+
CSSValue* toCSSValue() const override;
StyleValueType type() const override { return TokenStreamType; }

Powered by Google App Engine
This is Rietveld 408576698