| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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_COMPOSITOR_TRANSFORM_RECORDER_H_ | 5 #ifndef UI_COMPOSITOR_TRANSFORM_RECORDER_H_ |
| 6 #define UI_COMPOSITOR_TRANSFORM_RECORDER_H_ | 6 #define UI_COMPOSITOR_TRANSFORM_RECORDER_H_ |
| 7 | 7 |
| 8 #include "base/macros.h" | 8 #include "base/macros.h" |
| 9 #include "ui/compositor/compositor_export.h" | 9 #include "ui/compositor/compositor_export.h" |
| 10 | 10 |
| 11 namespace cc { | 11 namespace cc { |
| 12 class DisplayItem; | |
| 13 class DisplayItemList; | 12 class DisplayItemList; |
| 14 } | 13 } |
| 15 | 14 |
| 16 namespace gfx { | 15 namespace gfx { |
| 17 class Transform; | 16 class Transform; |
| 18 } | 17 } |
| 19 | 18 |
| 20 namespace ui { | 19 namespace ui { |
| 21 class PaintContext; | 20 class PaintContext; |
| 22 | 21 |
| (...skipping 11 matching lines...) Expand all Loading... |
| 34 private: | 33 private: |
| 35 const PaintContext& context_; | 34 const PaintContext& context_; |
| 36 bool transformed_; | 35 bool transformed_; |
| 37 | 36 |
| 38 DISALLOW_COPY_AND_ASSIGN(TransformRecorder); | 37 DISALLOW_COPY_AND_ASSIGN(TransformRecorder); |
| 39 }; | 38 }; |
| 40 | 39 |
| 41 } // namespace ui | 40 } // namespace ui |
| 42 | 41 |
| 43 #endif // UI_COMPOSITOR_TRANSFORM_RECORDER_H_ | 42 #endif // UI_COMPOSITOR_TRANSFORM_RECORDER_H_ |
| OLD | NEW |