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

Side by Side Diff: cc/animation/transform_operations.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 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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 "cc/animation/transform_operations.h" 5 #include "cc/animation/transform_operations.h"
6 6
7 #include <algorithm> 7 #include <algorithm>
8 8
9 #include "ui/gfx/animation/tween.h" 9 #include "ui/gfx/animation/tween.h"
10 #include "ui/gfx/box_f.h" 10 #include "ui/gfx/geometry/box_f.h"
11 #include "ui/gfx/transform_util.h" 11 #include "ui/gfx/transform_util.h"
12 #include "ui/gfx/vector3d_f.h" 12 #include "ui/gfx/vector3d_f.h"
13 13
14 namespace cc { 14 namespace cc {
15 15
16 TransformOperations::TransformOperations() 16 TransformOperations::TransformOperations()
17 : decomposed_transform_dirty_(true) { 17 : decomposed_transform_dirty_(true) {
18 } 18 }
19 19
20 TransformOperations::TransformOperations(const TransformOperations& other) { 20 TransformOperations::TransformOperations(const TransformOperations& other) {
(...skipping 303 matching lines...) Expand 10 before | Expand all | Expand 10 after
324 decomposed_transform_.reset(new gfx::DecomposedTransform()); 324 decomposed_transform_.reset(new gfx::DecomposedTransform());
325 gfx::Transform transform = Apply(); 325 gfx::Transform transform = Apply();
326 if (!gfx::DecomposeTransform(decomposed_transform_.get(), transform)) 326 if (!gfx::DecomposeTransform(decomposed_transform_.get(), transform))
327 return false; 327 return false;
328 decomposed_transform_dirty_ = false; 328 decomposed_transform_dirty_ = false;
329 } 329 }
330 return true; 330 return true;
331 } 331 }
332 332
333 } // namespace cc 333 } // namespace cc
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698