| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef GeometryPrinters_h | 5 #ifndef GeometryPrinters_h |
| 6 #define GeometryPrinters_h | 6 #define GeometryPrinters_h |
| 7 | 7 |
| 8 #include <iosfwd> |
| 8 #include "platform/geometry/FloatRoundedRect.h" | 9 #include "platform/geometry/FloatRoundedRect.h" |
| 9 #include <iosfwd> | |
| 10 | 10 |
| 11 namespace blink { | 11 namespace blink { |
| 12 | 12 |
| 13 class DoublePoint; | 13 class DoublePoint; |
| 14 class DoubleRect; | 14 class DoubleRect; |
| 15 class DoubleSize; | 15 class DoubleSize; |
| 16 class FloatBox; | 16 class FloatBox; |
| 17 class FloatPoint; | 17 class FloatPoint; |
| 18 class FloatPoint3D; | 18 class FloatPoint3D; |
| 19 class FloatQuad; | 19 class FloatQuad; |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 51 void PrintTo(const IntPoint&, std::ostream*); | 51 void PrintTo(const IntPoint&, std::ostream*); |
| 52 void PrintTo(const IntRect&, std::ostream*); | 52 void PrintTo(const IntRect&, std::ostream*); |
| 53 void PrintTo(const IntSize&, std::ostream*); | 53 void PrintTo(const IntSize&, std::ostream*); |
| 54 void PrintTo(const LayoutPoint&, std::ostream*); | 54 void PrintTo(const LayoutPoint&, std::ostream*); |
| 55 void PrintTo(const LayoutRect&, std::ostream*); | 55 void PrintTo(const LayoutRect&, std::ostream*); |
| 56 void PrintTo(const LayoutSize&, std::ostream*); | 56 void PrintTo(const LayoutSize&, std::ostream*); |
| 57 | 57 |
| 58 } // namespace blink | 58 } // namespace blink |
| 59 | 59 |
| 60 #endif // GeometryPrinters_h | 60 #endif // GeometryPrinters_h |
| OLD | NEW |