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

Side by Side Diff: ui/gfx/geometry/point.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/box_f.h ('k') | ui/gfx/geometry/point3_f.h » ('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_POINT_H_ 5 #ifndef UI_GFX_GEOMETRY_POINT_H_
6 #define UI_GFX_GEOMETRY_POINT_H_ 6 #define UI_GFX_GEOMETRY_POINT_H_
7 7
8 #include <iosfwd>
9 #include <string>
10
8 #include "ui/gfx/geometry/point_base.h" 11 #include "ui/gfx/geometry/point_base.h"
9 #include "ui/gfx/geometry/point_f.h" 12 #include "ui/gfx/geometry/point_f.h"
10 #include "ui/gfx/geometry/vector2d.h" 13 #include "ui/gfx/geometry/vector2d.h"
11 #include "ui/gfx/gfx_export.h" 14 #include "ui/gfx/gfx_export.h"
12 15
13 #if defined(OS_WIN) 16 #if defined(OS_WIN)
14 typedef unsigned long DWORD; 17 typedef unsigned long DWORD;
15 typedef struct tagPOINT POINT; 18 typedef struct tagPOINT POINT;
16 #elif defined(OS_IOS) 19 #elif defined(OS_IOS)
17 #include <CoreGraphics/CoreGraphics.h> 20 #include <CoreGraphics/CoreGraphics.h>
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after
78 } 81 }
79 82
80 inline Point PointAtOffsetFromOrigin(const Vector2d& offset_from_origin) { 83 inline Point PointAtOffsetFromOrigin(const Vector2d& offset_from_origin) {
81 return Point(offset_from_origin.x(), offset_from_origin.y()); 84 return Point(offset_from_origin.x(), offset_from_origin.y());
82 } 85 }
83 86
84 #if !defined(COMPILER_MSVC) 87 #if !defined(COMPILER_MSVC)
85 extern template class PointBase<Point, int, Vector2d>; 88 extern template class PointBase<Point, int, Vector2d>;
86 #endif 89 #endif
87 90
91 // This is declared here for use in gtest-based unit tests but is defined in
92 // the gfx_test_support target. Depend on that to use this in your unit test.
93 // This should not be used in production code - call ToString() instead.
94 void PrintTo(const Point& point, ::std::ostream* os);
95
88 } // namespace gfx 96 } // namespace gfx
89 97
90 #endif // UI_GFX_GEOMETRY_POINT_H_ 98 #endif // UI_GFX_GEOMETRY_POINT_H_
OLDNEW
« no previous file with comments | « ui/gfx/geometry/box_f.h ('k') | ui/gfx/geometry/point3_f.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698