blob: 910f55f5601800b3b2f3871ba6992e9810fbc417 [file] [log] [blame]
// Copyright 2019 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 THIRD_PARTY_BLINK_RENDERER_CORE_CSS_CSS_AXIS_VALUE_H_
#define THIRD_PARTY_BLINK_RENDERER_CORE_CSS_CSS_AXIS_VALUE_H_
#include "third_party/blink/renderer/core/css/css_value_list.h"
#include "third_party/blink/renderer/core/css_value_keywords.h"
#include "third_party/blink/renderer/platform/wtf/casting.h"
namespace blink {
namespace cssvalue {
class CSSAxisValue : public CSSValueList {
public:
explicit CSSAxisValue(CSSValueID axis_name);
CSSAxisValue(double x, double y, double z);
String CustomCSSText() const;
double X() const;
double Y() const;
double Z() const;
void TraceAfterDispatch(blink::Visitor* visitor) {
CSSValueList::TraceAfterDispatch(visitor);
}
private:
CSSValueID axis_name_;
};
} // namespace cssvalue
template <>
struct DowncastTraits<cssvalue::CSSAxisValue> {
static bool AllowFrom(const CSSValue& value) { return value.IsAxisValue(); }
};
} // namespace blink
#endif // THIRD_PARTY_BLINK_RENDERER_CORE_CSS_CSS_AXIS_VALUE_H_