summaryrefslogtreecommitdiff
path: root/chromium/third_party/blink/renderer/core/layout/min_max_sizes.cc
blob: 15f5bf6aca8357bd071f4313e6ff607e9b1746a9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// 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/core/layout/min_max_sizes.h"

#include <algorithm>

namespace blink {

std::ostream& operator<<(std::ostream& stream, const MinMaxSizes& value) {
  return stream << "(" << value.min_size << ", " << value.max_size << ")";
}

}  // namespace blink