| 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 CSSPropertyTransformUtils_h | 
 |   6 #define CSSPropertyTransformUtils_h | 
 |   7  | 
 |   8 #include "core/css/parser/CSSPropertyParserHelpers.h" | 
 |   9 #include "platform/wtf/Allocator.h" | 
 |  10  | 
 |  11 namespace blink { | 
 |  12  | 
 |  13 class CSSParserContext; | 
 |  14 class CSSParserLocalContext; | 
 |  15 class CSSParserTokenRange; | 
 |  16 class CSSValue; | 
 |  17  | 
 |  18 class CSSPropertyTransformUtils { | 
 |  19   STATIC_ONLY(CSSPropertyTransformUtils); | 
 |  20  | 
 |  21  public: | 
 |  22   static CSSValue* ConsumeTransformList(CSSParserTokenRange&, | 
 |  23                                         const CSSParserContext&, | 
 |  24                                         const CSSParserLocalContext&); | 
 |  25 }; | 
 |  26  | 
 |  27 }  // namespace blink | 
 |  28  | 
 |  29 #endif  // CSSPropertyTransformUtils_h | 
| OLD | NEW |