| OLD | NEW |
| 1 // Copyright 2010 The Chromium Authors. All rights reserved. | 1 // Copyright 2010 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 CC_LAYERS_LAYER_H_ | 5 #ifndef CC_LAYERS_LAYER_H_ |
| 6 #define CC_LAYERS_LAYER_H_ | 6 #define CC_LAYERS_LAYER_H_ |
| 7 | 7 |
| 8 #include <set> | 8 #include <set> |
| 9 #include <string> | 9 #include <string> |
| 10 #include <vector> | 10 #include <vector> |
| (...skipping 26 matching lines...) Expand all Loading... |
| 37 #include "ui/gfx/geometry/rect.h" | 37 #include "ui/gfx/geometry/rect.h" |
| 38 #include "ui/gfx/geometry/rect_f.h" | 38 #include "ui/gfx/geometry/rect_f.h" |
| 39 #include "ui/gfx/geometry/scroll_offset.h" | 39 #include "ui/gfx/geometry/scroll_offset.h" |
| 40 #include "ui/gfx/transform.h" | 40 #include "ui/gfx/transform.h" |
| 41 | 41 |
| 42 namespace gfx { | 42 namespace gfx { |
| 43 class BoxF; | 43 class BoxF; |
| 44 } | 44 } |
| 45 | 45 |
| 46 namespace base { | 46 namespace base { |
| 47 namespace debug { | 47 namespace trace_event { |
| 48 class ConvertableToTraceFormat; | 48 class ConvertableToTraceFormat; |
| 49 } | 49 } |
| 50 |
| 51 // TODO(ssid): remove these aliases after the tracing clients are moved to the |
| 52 // new trace_event namespace. See crbug.com/451032. ETA: March 2015 |
| 53 namespace debug { |
| 54 using ::base::trace_event::ConvertableToTraceFormat; |
| 50 } | 55 } |
| 56 } // namespace base |
| 51 | 57 |
| 52 namespace cc { | 58 namespace cc { |
| 53 | 59 |
| 54 class Animation; | 60 class Animation; |
| 55 class AnimationDelegate; | 61 class AnimationDelegate; |
| 56 struct AnimationEvent; | 62 struct AnimationEvent; |
| 57 class CopyOutputRequest; | 63 class CopyOutputRequest; |
| 58 class LayerAnimationDelegate; | 64 class LayerAnimationDelegate; |
| 59 class LayerAnimationEventObserver; | 65 class LayerAnimationEventObserver; |
| 60 class LayerClient; | 66 class LayerClient; |
| (...skipping 652 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 713 | 719 |
| 714 std::vector<FrameTimingRequest> frame_timing_requests_; | 720 std::vector<FrameTimingRequest> frame_timing_requests_; |
| 715 bool frame_timing_requests_dirty_; | 721 bool frame_timing_requests_dirty_; |
| 716 | 722 |
| 717 DISALLOW_COPY_AND_ASSIGN(Layer); | 723 DISALLOW_COPY_AND_ASSIGN(Layer); |
| 718 }; | 724 }; |
| 719 | 725 |
| 720 } // namespace cc | 726 } // namespace cc |
| 721 | 727 |
| 722 #endif // CC_LAYERS_LAYER_H_ | 728 #endif // CC_LAYERS_LAYER_H_ |
| OLD | NEW |