blob: 35318a62d71719a9749dec40a3ae3554bac56b70 [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.
#ifndef THIRD_PARTY_BLINK_RENDERER_CORE_GEOMETRY_DOM_RECT_H_
#define THIRD_PARTY_BLINK_RENDERER_CORE_GEOMETRY_DOM_RECT_H_
#include "third_party/blink/renderer/bindings/core/v8/dictionary.h"
#include "third_party/blink/renderer/core/core_export.h"
#include "third_party/blink/renderer/core/geometry/dom_rect_read_only.h"
#include "third_party/blink/renderer/platform/geometry/float_rect.h"
namespace blink {
class DOMRect;
class DOMRectInit;
class CORE_EXPORT DOMRect final : public DOMRectReadOnly {
DEFINE_WRAPPERTYPEINFO();
public:
static DOMRect* Create(double x = 0,
double y = 0,
double width = 0,
double height = 0);
static DOMRect* FromFloatRect(const FloatRect&);
static DOMRect* fromRect(const DOMRectInit*);
DOMRect(double x, double y, double z, double w);
void setX(double x) { x_ = x; }
void setY(double y) { y_ = y; }
void setWidth(double width) { width_ = width; }
void setHeight(double height) { height_ = height; }
};
} // namespace blink
#endif