Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(71)

Side by Side Diff: third_party/WebKit/Source/platform/testing/GeometryPrinters.h

Issue 1855303002: Replace filter outsets with bounds mapping in Blink. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: senorblanco review comments Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 "platform/geometry/FloatRoundedRect.h" 8 #include "platform/geometry/FloatRoundedRect.h"
9 #include <iosfwd> 9 #include <iosfwd>
10 10
(...skipping 19 matching lines...) Expand all
30 // you need to make sure the blink_platform_test_support target is linked in 30 // you need to make sure the blink_platform_test_support target is linked in
31 // your unit test binary. 31 // your unit test binary.
32 void PrintTo(const FloatBox&, std::ostream*); 32 void PrintTo(const FloatBox&, std::ostream*);
33 void PrintTo(const FloatPoint&, std::ostream*); 33 void PrintTo(const FloatPoint&, std::ostream*);
34 void PrintTo(const FloatPoint3D&, std::ostream*); 34 void PrintTo(const FloatPoint3D&, std::ostream*);
35 void PrintTo(const FloatQuad&, std::ostream*); 35 void PrintTo(const FloatQuad&, std::ostream*);
36 void PrintTo(const FloatRect&, std::ostream*); 36 void PrintTo(const FloatRect&, std::ostream*);
37 void PrintTo(const FloatRoundedRect&, std::ostream*); 37 void PrintTo(const FloatRoundedRect&, std::ostream*);
38 void PrintTo(const FloatRoundedRect::Radii&, std::ostream*); 38 void PrintTo(const FloatRoundedRect::Radii&, std::ostream*);
39 void PrintTo(const FloatSize&, std::ostream*); 39 void PrintTo(const FloatSize&, std::ostream*);
40 void PrintTo(const IntRect&, std::ostream*);
40 void PrintTo(const LayoutRect&, std::ostream*); 41 void PrintTo(const LayoutRect&, std::ostream*);
41 42
42 } // namespace blink 43 } // namespace blink
43 44
44 #endif // GeometryPrinters_h 45 #endif // GeometryPrinters_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698