blob: 5c7c98510670fc6e62a1746edc4cb940dfc3348f [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.
#include "third_party/blink/renderer/platform/geometry/layout_size.h"
#include "third_party/blink/renderer/platform/wtf/text/text_stream.h"
#include "third_party/blink/renderer/platform/wtf/text/wtf_string.h"
namespace blink {
std::ostream& operator<<(std::ostream& ostream, const LayoutSize& size) {
return ostream << size.ToString();
}
String LayoutSize::ToString() const {
return String::Format("%sx%s", Width().ToString().Ascii().data(),
Height().ToString().Ascii().data());
}
WTF::TextStream& operator<<(WTF::TextStream& ts, const LayoutSize& size) {
return ts << FloatSize(size);
}
} // namespace blink