summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/Source/core/css/cssom/StyleValueFactory.h
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/WebKit/Source/core/css/cssom/StyleValueFactory.h')
-rw-r--r--third_party/WebKit/Source/core/css/cssom/StyleValueFactory.h25
1 files changed, 25 insertions, 0 deletions
diff --git a/third_party/WebKit/Source/core/css/cssom/StyleValueFactory.h b/third_party/WebKit/Source/core/css/cssom/StyleValueFactory.h
new file mode 100644
index 0000000..36a4437
--- /dev/null
+++ b/third_party/WebKit/Source/core/css/cssom/StyleValueFactory.h
@@ -0,0 +1,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