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

Side by Side 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 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 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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698