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

Side by Side Diff: third_party/WebKit/Source/core/css/properties/CSSPropertyAnimationNameUtils.h

Issue 2896543002: Implements CSSPropertyAPI for the animation-name property. (Closed)
Patch Set: Created 3 years, 7 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 unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright 2017 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef CSSPropertyAnimationNameUtils_h
6 #define CSSPropertyAnimationNameUtils_h
7
8 #include "core/css/parser/CSSParserContext.h"
9 #include "platform/wtf/Allocator.h"
10
11 namespace blink {
12
13 class CSSParserTokenRange;
14 class CSSValue;
15
16 class CSSPropertyAnimationNameUtils {
17 STATIC_ONLY(CSSPropertyAnimationNameUtils);
18
19 static CSSValue* ConsumeAnimationName(CSSParserTokenRange&,
20 const CSSParserContext*,
21 bool);
Bugs Nash 2017/05/19 06:18:47 I think the name of the bool should be included he
Jia 2017/05/30 01:05:00 Done.
22 };
23
24 } // namespace blink
25
26 #endif // CSSPropertyAnimationNameUtils_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698