#include "third_party/blink/renderer/core/css/css_relative_color_value.h"
#include "base/memory/values_equivalent.h"
#include "third_party/blink/renderer/core/css_value_keywords.h"
#include "third_party/blink/renderer/platform/wtf/text/string_builder.h"
#include "third_party/blink/renderer/platform/wtf/text/wtf_string.h"
namespace blink::cssvalue {
CSSRelativeColorValue::CSSRelativeColorValue(
const CSSValue& origin_color,
Color::ColorSpace color_interpolation_space,
const CSSValue& channel1,
const CSSValue& channel2,
const CSSValue& channel3,
const CSSValue* alpha)
: … { … }
String CSSRelativeColorValue::CustomCSSText() const { … }
void CSSRelativeColorValue::TraceAfterDispatch(blink::Visitor* visitor) const { … }
bool CSSRelativeColorValue::Equals(const CSSRelativeColorValue& other) const { … }
const CSSValue& CSSRelativeColorValue::OriginColor() const { … }
Color::ColorSpace CSSRelativeColorValue::ColorInterpolationSpace() const { … }
const CSSValue& CSSRelativeColorValue::Channel1() const { … }
const CSSValue& CSSRelativeColorValue::Channel2() const { … }
const CSSValue& CSSRelativeColorValue::Channel3() const { … }
const CSSValue* CSSRelativeColorValue::Alpha() const { … }
}