| 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 25 matching lines...) Expand all Loading... |
| 36 #include "ui/gfx/geometry/rect.h" | 36 #include "ui/gfx/geometry/rect.h" |
| 37 #include "ui/gfx/geometry/rect_f.h" | 37 #include "ui/gfx/geometry/rect_f.h" |
| 38 #include "ui/gfx/geometry/scroll_offset.h" | 38 #include "ui/gfx/geometry/scroll_offset.h" |
| 39 #include "ui/gfx/transform.h" | 39 #include "ui/gfx/transform.h" |
| 40 | 40 |
| 41 namespace gfx { | 41 namespace gfx { |
| 42 class BoxF; | 42 class BoxF; |
| 43 } | 43 } |
| 44 | 44 |
| 45 namespace base { | 45 namespace base { |
| 46 namespace trace_event { | 46 namespace debug { |
| 47 class ConvertableToTraceFormat; | 47 class ConvertableToTraceFormat; |
| 48 } | 48 } |
| 49 | |
| 50 // TODO(ssid): remove these aliases after the tracing clients are moved to the | |
| 51 // new trace_event namespace. See crbug.com/451032. ETA: March 2015 | |
| 52 namespace debug { | |
| 53 using ::base::trace_event::ConvertableToTraceFormat; | |
| 54 } | 49 } |
| 55 } // namespace base | |
| 56 | 50 |
| 57 namespace cc { | 51 namespace cc { |
| 58 | 52 |
| 59 class Animation; | 53 class Animation; |
| 60 class AnimationDelegate; | 54 class AnimationDelegate; |
| 61 struct AnimationEvent; | 55 struct AnimationEvent; |
| 62 class CopyOutputRequest; | 56 class CopyOutputRequest; |
| 63 class LayerAnimationDelegate; | 57 class LayerAnimationDelegate; |
| 64 class LayerAnimationEventObserver; | 58 class LayerAnimationEventObserver; |
| 65 class LayerClient; | 59 class LayerClient; |
| (...skipping 648 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 714 | 708 |
| 715 std::vector<FrameTimingRequest> frame_timing_requests_; | 709 std::vector<FrameTimingRequest> frame_timing_requests_; |
| 716 bool frame_timing_requests_dirty_; | 710 bool frame_timing_requests_dirty_; |
| 717 | 711 |
| 718 DISALLOW_COPY_AND_ASSIGN(Layer); | 712 DISALLOW_COPY_AND_ASSIGN(Layer); |
| 719 }; | 713 }; |
| 720 | 714 |
| 721 } // namespace cc | 715 } // namespace cc |
| 722 | 716 |
| 723 #endif // CC_LAYERS_LAYER_H_ | 717 #endif // CC_LAYERS_LAYER_H_ |
| OLD | NEW |