chromium/third_party/blink/renderer/core/geometry/dom_rect_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_rect_read_only.h"

#include "third_party/blink/renderer/bindings/core/v8/script_value.h"
#include "third_party/blink/renderer/bindings/core/v8/v8_dom_rect_init.h"
#include "third_party/blink/renderer/bindings/core/v8/v8_object_builder.h"

namespace blink {

DOMRectReadOnly* DOMRectReadOnly::Create(double x,
                                         double y,
                                         double width,
                                         double height) {}

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

DOMRectReadOnly* DOMRectReadOnly::FromRect(const gfx::Rect& rect) {}

DOMRectReadOnly* DOMRectReadOnly::FromRectF(const gfx::RectF& rect) {}

DOMRectReadOnly* DOMRectReadOnly::fromRect(const DOMRectInit* other) {}

DOMRectReadOnly::DOMRectReadOnly(double x,
                                 double y,
                                 double width,
                                 double height)
    :{}

}  // namespace blink