blob: 7d519c4b33b87ec8e2dd9ede8130fc19578dd611 [file] [log] [blame]
// Copyright 2014 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.
#include "third_party/blink/renderer/core/geometry/dom_rect.h"
#include "third_party/blink/renderer/core/geometry/dom_rect_init.h"
namespace blink {
DOMRect* DOMRect::Create(double x, double y, double width, double height) {
return MakeGarbageCollected<DOMRect>(x, y, width, height);
}
DOMRect* DOMRect::FromFloatRect(const FloatRect& rect) {
return MakeGarbageCollected<DOMRect>(rect.X(), rect.Y(), rect.Width(),
rect.Height());
}
DOMRect* DOMRect::fromRect(const DOMRectInit* other) {
return MakeGarbageCollected<DOMRect>(other->x(), other->y(), other->width(),
other->height());
}
DOMRect::DOMRect(double x, double y, double width, double height)
: DOMRectReadOnly(x, y, width, height) {}
} // namespace blink