Chromium Code Reviews| OLD | NEW |
|---|---|
| (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 | |
| OLD | NEW |