Index: third_party/WebKit/Source/core/css/properties/CSSPropertyTransformUtils.h |
diff --git a/third_party/WebKit/Source/core/css/properties/CSSPropertyTransformUtils.h b/third_party/WebKit/Source/core/css/properties/CSSPropertyTransformUtils.h |
new file mode 100644 |
index 0000000000000000000000000000000000000000..fbf4e48850753cb366c754337c5bcbba97003f6c |
--- /dev/null |
+++ b/third_party/WebKit/Source/core/css/properties/CSSPropertyTransformUtils.h |
@@ -0,0 +1,29 @@ |
+// Copyright 2017 The Chromium Authors. All rights reserved. |
+// Use of this source code is governed by a BSD-style license that can be |
+// found in the LICENSE file. |
+ |
+#ifndef CSSPropertyTransformUtils_h |
+#define CSSPropertyTransformUtils_h |
+ |
+#include "core/css/parser/CSSPropertyParserHelpers.h" |
+#include "platform/wtf/Allocator.h" |
+ |
+namespace blink { |
+ |
+class CSSParserContext; |
+class CSSParserLocalContext; |
+class CSSParserTokenRange; |
+class CSSValue; |
+ |
+class CSSPropertyTransformUtils { |
+ STATIC_ONLY(CSSPropertyTransformUtils); |
+ |
+ public: |
+ static CSSValue* ConsumeTransformList(CSSParserTokenRange&, |
+ const CSSParserContext&, |
+ const CSSParserLocalContext&); |
+}; |
+ |
+} // namespace blink |
+ |
+#endif // CSSPropertyTransformUtils_h |