chromium/third_party/blink/renderer/core/geometry/dom_point_read_only.cc

// Copyright 2014 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/geometry/dom_point_read_only.h"

#include "third_party/blink/renderer/bindings/core/v8/script_value.h"
#include "third_party/blink/renderer/bindings/core/v8/v8_dom_matrix_init.h"
#include "third_party/blink/renderer/bindings/core/v8/v8_dom_point_init.h"
#include "third_party/blink/renderer/bindings/core/v8/v8_object_builder.h"
#include "third_party/blink/renderer/core/geometry/dom_matrix_read_only.h"
#include "third_party/blink/renderer/core/geometry/dom_point.h"
#include "third_party/blink/renderer/platform/bindings/exception_state.h"

namespace blink {

DOMPointReadOnly* DOMPointReadOnly::Create(double x,
                                           double y,
                                           double z,
                                           double w) {}

ScriptValue DOMPointReadOnly::toJSONForBinding(
    ScriptState* script_state) const {}

DOMPointReadOnly* DOMPointReadOnly::fromPoint(const DOMPointInit* other) {}

DOMPoint* DOMPointReadOnly::matrixTransform(DOMMatrixInit* other,
                                            ExceptionState& exception_state) {}

DOMPointReadOnly::DOMPointReadOnly(double x, double y, double z, double w)
    :{}

}  // namespace blink