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

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

Issue 2939883003: Added CSSPropertyTransitionPropertyUtils which holds shared parsing logic. (Closed)
Patch Set: Added ConsumeTransitinProperty method 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/CSSPropertyTransitionPropertyUtils.h
diff --git a/third_party/WebKit/Source/core/css/properties/CSSPropertyTransitionPropertyUtils.h b/third_party/WebKit/Source/core/css/properties/CSSPropertyTransitionPropertyUtils.h
new file mode 100644
index 0000000000000000000000000000000000000000..c9e9b2112b7c65d352520f223f3a353638cce9b9
--- /dev/null
+++ b/third_party/WebKit/Source/core/css/properties/CSSPropertyTransitionPropertyUtils.h
@@ -0,0 +1,24 @@
+// 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 CSSPropertyTransitionPropertyUtils_h
+#define CSSPropertyTransitionPropertyUtils_h
+
+#include "platform/wtf/Allocator.h"
+
+namespace blink {
+
+class CSSParserTokenRange;
+class CSSValue;
+class CSSValueList;
+
+class CSSPropertyTransitionPropertyUtils {
+ STATIC_ONLY(CSSPropertyTransitionPropertyUtils);
+ static CSSValue* ConsumeTransitionProperty(CSSParserTokenRange&);
+ static bool IsValidAnimationPropertyList(const CSSValueList&);
alancutter (OOO until 2018) 2017/06/15 04:53:49 Let's drop the word "Animation" here as it's confu
Bugs Nash 2017/06/15 05:44:37 done
+};
+
+} // namespace blink
+
+#endif // CSSPropertyTransitionPropertyUtils_h

Powered by Google App Engine
This is Rietveld 408576698