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

Side by Side Diff: ui/gfx/transform_unittest.cc

Issue 7811002: Remove use of <iostream> where unnecessary. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fixed Created 9 years, 3 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 | « remoting/host/capturer_mac_unittest.cc ('k') | views/touchui/gesture_manager.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) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 #include "ui/gfx/transform.h" 5 #include "ui/gfx/transform.h"
6 6
7 #include <iostream> 7 #include <ostream>
8 #include <limits> 8 #include <limits>
9 9
10 #include "base/basictypes.h" 10 #include "base/basictypes.h"
11 #include "testing/gtest/include/gtest/gtest.h" 11 #include "testing/gtest/include/gtest/gtest.h"
12 #include "ui/gfx/point3.h" 12 #include "ui/gfx/point3.h"
13 13
14 namespace { 14 namespace {
15 15
16 bool PointsAreNearlyEqual(const gfx::Point3f& lhs, 16 bool PointsAreNearlyEqual(const gfx::Point3f& lhs,
17 const gfx::Point3f& rhs) { 17 const gfx::Point3f& rhs) {
(...skipping 488 matching lines...) Expand 10 before | Expand all | Expand 10 after
506 EXPECT_EQ(value.yprime, pt.y()); 506 EXPECT_EQ(value.yprime, pt.y());
507 xform.TransformPointReverse(pt); 507 xform.TransformPointReverse(pt);
508 EXPECT_EQ(pt.x(), value.x); 508 EXPECT_EQ(pt.x(), value.x);
509 EXPECT_EQ(pt.y(), value.y); 509 EXPECT_EQ(pt.y(), value.y);
510 } 510 }
511 } 511 }
512 } 512 }
513 } 513 }
514 514
515 } // namespace 515 } // namespace
OLDNEW
« no previous file with comments | « remoting/host/capturer_mac_unittest.cc ('k') | views/touchui/gesture_manager.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698