OLD | NEW |
1 // Copyright 2012 The Chromium Authors. All rights reserved. | 1 // Copyright 2012 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 CCPrioritizedTexture_h | 5 #ifndef CCPrioritizedTexture_h |
6 #define CCPrioritizedTexture_h | 6 #define CCPrioritizedTexture_h |
7 | 7 |
8 #include "base/basictypes.h" | 8 #include "base/basictypes.h" |
9 #include "base/memory/scoped_ptr.h" | 9 #include "base/memory/scoped_ptr.h" |
| 10 #include "base/logging.h" |
10 #include "CCPriorityCalculator.h" | 11 #include "CCPriorityCalculator.h" |
11 #include "CCResourceProvider.h" | 12 #include "CCResourceProvider.h" |
12 #include "CCTexture.h" | 13 #include "CCTexture.h" |
13 #include "GraphicsContext3D.h" | 14 #include "GraphicsContext3D.h" |
14 #include "IntRect.h" | 15 #include "IntRect.h" |
15 #include "IntSize.h" | 16 #include "IntSize.h" |
16 | 17 |
17 namespace cc { | 18 namespace cc { |
18 | 19 |
19 class CCPrioritizedTextureManager; | 20 class CCPrioritizedTextureManager; |
(...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
138 | 139 |
139 Backing* m_backing; | 140 Backing* m_backing; |
140 CCPrioritizedTextureManager* m_manager; | 141 CCPrioritizedTextureManager* m_manager; |
141 | 142 |
142 DISALLOW_COPY_AND_ASSIGN(CCPrioritizedTexture); | 143 DISALLOW_COPY_AND_ASSIGN(CCPrioritizedTexture); |
143 }; | 144 }; |
144 | 145 |
145 } // namespace cc | 146 } // namespace cc |
146 | 147 |
147 #endif | 148 #endif |
OLD | NEW |