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

Side by Side Diff: ui/gfx/geometry/quad_f.h

Issue 368903003: Provide gtest printers for ui/gfx geometry types (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: add gfx_test_support dep to video_encode_accelerator_unittest Created 6 years, 5 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 | Annotate | Revision Log
« no previous file with comments | « ui/gfx/geometry/point_f.h ('k') | ui/gfx/geometry/quad_unittest.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 UI_GFX_GEOMETRY_QUAD_F_H_ 5 #ifndef UI_GFX_GEOMETRY_QUAD_F_H_
6 #define UI_GFX_GEOMETRY_QUAD_F_H_ 6 #define UI_GFX_GEOMETRY_QUAD_F_H_
7 7
8 #include <algorithm> 8 #include <algorithm>
9 #include <cmath> 9 #include <cmath>
10 #include <iosfwd>
10 #include <string> 11 #include <string>
11 12
12 #include "ui/gfx/geometry/point_f.h" 13 #include "ui/gfx/geometry/point_f.h"
13 #include "ui/gfx/geometry/rect_f.h" 14 #include "ui/gfx/geometry/rect_f.h"
14 #include "ui/gfx/gfx_export.h" 15 #include "ui/gfx/gfx_export.h"
15 16
16 namespace gfx { 17 namespace gfx {
17 18
18 // A Quad is defined by four corners, allowing it to have edges that are not 19 // A Quad is defined by four corners, allowing it to have edges that are not
19 // axis-aligned, unlike a Rect. 20 // axis-aligned, unlike a Rect.
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after
97 inline bool operator!=(const QuadF& lhs, const QuadF& rhs) { 98 inline bool operator!=(const QuadF& lhs, const QuadF& rhs) {
98 return !(lhs == rhs); 99 return !(lhs == rhs);
99 } 100 }
100 101
101 // Add a vector to a quad, offseting each point in the quad by the vector. 102 // Add a vector to a quad, offseting each point in the quad by the vector.
102 GFX_EXPORT QuadF operator+(const QuadF& lhs, const Vector2dF& rhs); 103 GFX_EXPORT QuadF operator+(const QuadF& lhs, const Vector2dF& rhs);
103 // Subtract a vector from a quad, offseting each point in the quad by the 104 // Subtract a vector from a quad, offseting each point in the quad by the
104 // inverse of the vector. 105 // inverse of the vector.
105 GFX_EXPORT QuadF operator-(const QuadF& lhs, const Vector2dF& rhs); 106 GFX_EXPORT QuadF operator-(const QuadF& lhs, const Vector2dF& rhs);
106 107
108 // This is declared here for use in gtest-based unit tests but is defined in
109 // the gfx_test_support target. Depend on that to use this in your unit test.
110 // This should not be used in production code - call ToString() instead.
111 void PrintTo(const QuadF& quad, ::std::ostream* os);
112
107 } // namespace gfx 113 } // namespace gfx
108 114
109 #endif // UI_GFX_GEOMETRY_QUAD_F_H_ 115 #endif // UI_GFX_GEOMETRY_QUAD_F_H_
OLDNEW
« no previous file with comments | « ui/gfx/geometry/point_f.h ('k') | ui/gfx/geometry/quad_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698