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

Unified Diff: third_party/WebKit/Source/core/css/properties/CSSPropertyTransformUtils.h

Issue 2951763002: CSS Properties & Values API: replace transform-function with transform-list. (Closed)
Patch Set: move Created 3 years, 6 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/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

Powered by Google App Engine
This is Rietveld 408576698