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

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

Issue 2158733003: [Typed-OM] Add StringOrCSSVariableReferenceValue type (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Simplify variable Created 4 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
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 3ffe8c069429b6176e0afe0ae7b1f2966ba26e25..c1c8dd1a0c137589a6eafe1d3e13a62deab896e0 100644
--- a/third_party/WebKit/Source/core/css/cssom/CSSTokenStreamValue.h
+++ b/third_party/WebKit/Source/core/css/cssom/CSSTokenStreamValue.h
@@ -6,12 +6,13 @@
#define CSSTokenStreamValue_h
#include "bindings/core/v8/Iterable.h"
+#include "bindings/core/v8/StringOrCSSVariableReferenceValue.h"
#include "core/css/cssom/CSSStyleValue.h"
#include "wtf/Vector.h"
namespace blink {
-class CORE_EXPORT CSSTokenStreamValue final : public CSSStyleValue, public ValueIterable<String> {
+class CORE_EXPORT CSSTokenStreamValue final : public CSSStyleValue, public ValueIterable<StringOrCSSVariableReferenceValue> {
WTF_MAKE_NONCOPYABLE(CSSTokenStreamValue);
DEFINE_WRAPPERTYPEINFO();
public:

Powered by Google App Engine
This is Rietveld 408576698