summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/Source/core/css/cssom/StyleValueFactory.h
blob: 36a4437af4608d5f81c6d4b2e4265f039a0fbbe9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// Copyright 2016 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 StyleValueFactory_h
#define StyleValueFactory_h

#include "core/CSSPropertyNames.h"
#include "wtf/Allocator.h"

namespace blink {

class CSSValue;
class StyleValue;

class StyleValueFactory {
    STATIC_ONLY(StyleValueFactory);

public:
    static StyleValue* create(CSSPropertyID, const CSSValue&);
};

} // namespace blink

#endif