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

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

Issue 392013005: [#1] Delete reduntdant 19 header files in ui/gfx (8 of 19 by this) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: sorted includes 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
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 // MSVC++ requires this to be set before any other includes to get M_PI. 5 // MSVC++ requires this to be set before any other includes to get M_PI.
6 #define _USE_MATH_DEFINES 6 #define _USE_MATH_DEFINES
7 7
8 #include "ui/gfx/transform.h" 8 #include "ui/gfx/transform.h"
9 9
10 #include <cmath> 10 #include <cmath>
11 11
12 #include "base/logging.h" 12 #include "base/logging.h"
13 #include "base/strings/stringprintf.h" 13 #include "base/strings/stringprintf.h"
14 #include "ui/gfx/box_f.h" 14 #include "ui/gfx/geometry/box_f.h"
15 #include "ui/gfx/point.h" 15 #include "ui/gfx/geometry/point.h"
16 #include "ui/gfx/point3_f.h" 16 #include "ui/gfx/geometry/point3_f.h"
17 #include "ui/gfx/rect.h" 17 #include "ui/gfx/rect.h"
18 #include "ui/gfx/safe_integer_conversions.h" 18 #include "ui/gfx/safe_integer_conversions.h"
19 #include "ui/gfx/skia_util.h" 19 #include "ui/gfx/skia_util.h"
20 #include "ui/gfx/transform_util.h" 20 #include "ui/gfx/transform_util.h"
21 #include "ui/gfx/vector3d_f.h" 21 #include "ui/gfx/vector3d_f.h"
22 22
23 namespace gfx { 23 namespace gfx {
24 24
25 namespace { 25 namespace {
26 26
(...skipping 515 matching lines...) Expand 10 before | Expand all | Expand 10 after
542 matrix_.get(2, 1), 542 matrix_.get(2, 1),
543 matrix_.get(2, 2), 543 matrix_.get(2, 2),
544 matrix_.get(2, 3), 544 matrix_.get(2, 3),
545 matrix_.get(3, 0), 545 matrix_.get(3, 0),
546 matrix_.get(3, 1), 546 matrix_.get(3, 1),
547 matrix_.get(3, 2), 547 matrix_.get(3, 2),
548 matrix_.get(3, 3)); 548 matrix_.get(3, 3));
549 } 549 }
550 550
551 } // namespace gfx 551 } // namespace gfx
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698