| OLD | NEW |
| 1 // Copyright 2011 The Chromium Authors. All rights reserved. | 1 // Copyright 2011 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_LAYER_UPDATER_H_ | 5 #ifndef CC_LAYER_UPDATER_H_ |
| 6 #define CC_LAYER_UPDATER_H_ | 6 #define CC_LAYER_UPDATER_H_ |
| 7 | 7 |
| 8 #include "base/memory/ref_counted.h" | 8 #include "base/memory/ref_counted.h" |
| 9 #include "base/memory/scoped_ptr.h" | 9 #include "base/memory/scoped_ptr.h" |
| 10 #include "cc/cc_export.h" | 10 #include "cc/base/cc_export.h" |
| 11 | 11 |
| 12 namespace gfx { | 12 namespace gfx { |
| 13 class Rect; | 13 class Rect; |
| 14 class Size; | 14 class Size; |
| 15 class Vector2d; | 15 class Vector2d; |
| 16 } | 16 } |
| 17 | 17 |
| 18 namespace cc { | 18 namespace cc { |
| 19 | 19 |
| 20 class PrioritizedResource; | 20 class PrioritizedResource; |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 57 protected: | 57 protected: |
| 58 virtual ~LayerUpdater() { } | 58 virtual ~LayerUpdater() { } |
| 59 | 59 |
| 60 private: | 60 private: |
| 61 friend class base::RefCounted<LayerUpdater>; | 61 friend class base::RefCounted<LayerUpdater>; |
| 62 }; | 62 }; |
| 63 | 63 |
| 64 } // namespace cc | 64 } // namespace cc |
| 65 | 65 |
| 66 #endif // CC_LAYER_UPDATER_H_ | 66 #endif // CC_LAYER_UPDATER_H_ |
| OLD | NEW |