blob: 96c9f4cd66cf4bc34eac342bfc871120d76cdce8 [file] [log] [blame]
// 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 {{api_classname}}_h
#define {{api_classname}}_h
#include "core/CSSPropertyNames.h"
#include "core/css/properties/CSSPropertyAPI.h"
namespace blink {
class CSSParserTokenRange;
class CSSParserContext;
class {{api_classname}} : public CSSPropertyAPI {
public:
{% if "parseSingleValue" in api_methods %}
static const CSSValue* parseSingleValue(CSSParserTokenRange&,
const CSSParserContext*);
{% endif %}
};
} // namespace blink
#endif // {{api_classname}}_h