blob: c0c0af51589b453d7f71ab4a870ef9c49bf40614 [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 SizeListPropertyFunctions_h
#define SizeListPropertyFunctions_h
#include "core/CSSPropertyNames.h"
#include "core/style/FillLayer.h"
#include "wtf/Vector.h"
namespace blink {
class ComputedStyle;
using SizeList = Vector<FillSize, 1>;
class SizeListPropertyFunctions {
STATIC_ONLY(SizeListPropertyFunctions);
public:
static SizeList getInitialSizeList(CSSPropertyID);
static SizeList getSizeList(CSSPropertyID, const ComputedStyle&);
static void setSizeList(CSSPropertyID, ComputedStyle&, const SizeList&);
};
} // namespace blink
#endif // SizeListPropertyFunctions_h