chromium/third_party/blink/renderer/core/css/cssom/css_perspective.cc

// Copyright 2016 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "third_party/blink/renderer/core/css/cssom/css_perspective.h"

#include "third_party/abseil-cpp/absl/base/macros.h"
#include "third_party/blink/renderer/core/css/css_identifier_value.h"
#include "third_party/blink/renderer/core/css/css_math_expression_node.h"
#include "third_party/blink/renderer/core/css/css_math_function_value.h"
#include "third_party/blink/renderer/core/css/cssom/css_keyword_value.h"
#include "third_party/blink/renderer/core/css/cssom/css_unit_value.h"
#include "third_party/blink/renderer/core/geometry/dom_matrix.h"
#include "third_party/blink/renderer/platform/bindings/exception_state.h"

namespace blink {

namespace {

// Given the union provided, return null if it's invalid, and either the
// original union or a newly-created one if it is valid.
V8CSSPerspectiveValue* HandleInputPerspective(V8CSSPerspectiveValue* value) {}

}  // namespace

CSSPerspective* CSSPerspective::Create(V8CSSPerspectiveValue* length,
                                       ExceptionState& exception_state) {}

void CSSPerspective::setLength(V8CSSPerspectiveValue* length,
                               ExceptionState& exception_state) {}

CSSPerspective* CSSPerspective::FromCSSValue(const CSSFunctionValue& value) {}

DOMMatrix* CSSPerspective::toMatrix(ExceptionState& exception_state) const {}

const CSSFunctionValue* CSSPerspective::ToCSSValue() const {}

CSSPerspective::CSSPerspective(V8CSSPerspectiveValue* length)
    :{}

}  // namespace blink