blob: 40ad57eeb581a97d3b722efb55fd8e36b10cc704 [file] [log] [blame]
// Copyright 2018 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_LAYOUT_INTRINSIC_SIZING_INFO_H_
#define THIRD_PARTY_BLINK_RENDERER_CORE_LAYOUT_INTRINSIC_SIZING_INFO_H_
#include "third_party/blink/renderer/platform/geometry/float_size.h"
namespace blink {
struct IntrinsicSizingInfo {
IntrinsicSizingInfo() : has_width(true), has_height(true) {}
FloatSize size;
FloatSize aspect_ratio;
bool has_width;
bool has_height;
void Transpose() {
size = size.TransposedSize();
aspect_ratio = aspect_ratio.TransposedSize();
std::swap(has_width, has_height);
}
};
} // namespace blink
#endif // THIRD_PARTY_BLINK_RENDERER_CORE_LAYOUT_INTRINSIC_SIZING_INFO_H_