blob: 7719929ff1c6f7629d638b2d8b3ab7280025d113 [file] [log] [blame]
// Copyright 2016 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_MODULES_CSSPAINT_PAINT_SIZE_H_
#define THIRD_PARTY_BLINK_RENDERER_MODULES_CSSPAINT_PAINT_SIZE_H_
#include "base/macros.h"
#include "third_party/blink/renderer/platform/bindings/script_wrappable.h"
#include "third_party/blink/renderer/platform/geometry/float_size.h"
#include "third_party/blink/renderer/platform/heap/handle.h"
namespace blink {
class PaintSize : public ScriptWrappable {
DEFINE_WRAPPERTYPEINFO();
public:
explicit PaintSize(FloatSize size) : size_(size) {}
~PaintSize() override = default;
float width() const { return size_.Width(); }
float height() const { return size_.Height(); }
private:
FloatSize size_;
DISALLOW_COPY_AND_ASSIGN(PaintSize);
};
} // namespace blink
#endif // THIRD_PARTY_BLINK_RENDERER_MODULES_CSSPAINT_PAINT_SIZE_H_