| 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 CCPrioritizedTextureManager_h | 5 #ifndef CC_PRIORITIZED_TEXTURE_MANAGER_H_ |
| 6 #define CCPrioritizedTextureManager_h | 6 #define CC_PRIORITIZED_TEXTURE_MANAGER_H_ |
| 7 | 7 |
| 8 #include <list> | 8 #include <list> |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| 11 #include "base/basictypes.h" | 11 #include "base/basictypes.h" |
| 12 #include "base/hash_tables.h" | 12 #include "base/hash_tables.h" |
| 13 #include "base/memory/scoped_ptr.h" | 13 #include "base/memory/scoped_ptr.h" |
| 14 #include "cc/cc_export.h" | 14 #include "cc/cc_export.h" |
| 15 #include "cc/prioritized_texture.h" | 15 #include "cc/prioritized_texture.h" |
| 16 #include "cc/priority_calculator.h" | 16 #include "cc/priority_calculator.h" |
| (...skipping 167 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 184 | 184 |
| 185 // Statistics copied at the time of pushTexturePrioritiesToBackings. | 185 // Statistics copied at the time of pushTexturePrioritiesToBackings. |
| 186 size_t m_memoryVisibleLastPushedBytes; | 186 size_t m_memoryVisibleLastPushedBytes; |
| 187 size_t m_memoryVisibleAndNearbyLastPushedBytes; | 187 size_t m_memoryVisibleAndNearbyLastPushedBytes; |
| 188 | 188 |
| 189 DISALLOW_COPY_AND_ASSIGN(PrioritizedTextureManager); | 189 DISALLOW_COPY_AND_ASSIGN(PrioritizedTextureManager); |
| 190 }; | 190 }; |
| 191 | 191 |
| 192 } // namespace cc | 192 } // namespace cc |
| 193 | 193 |
| 194 #endif | 194 #endif // CC_PRIORITIZED_TEXTURE_MANAGER_H_ |
| OLD | NEW |