| 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_RESOURCES_LAYER_TILING_DATA_H_ | 5 #ifndef CC_RESOURCES_LAYER_TILING_DATA_H_ |
| 6 #define CC_RESOURCES_LAYER_TILING_DATA_H_ | 6 #define CC_RESOURCES_LAYER_TILING_DATA_H_ |
| 7 | 7 |
| 8 #include <utility> | 8 #include <utility> |
| 9 | 9 |
| 10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
| 11 #include "base/containers/hash_tables.h" |
| 11 #include "base/memory/scoped_ptr.h" | 12 #include "base/memory/scoped_ptr.h" |
| 12 #include "cc/base/cc_export.h" | 13 #include "cc/base/cc_export.h" |
| 13 #include "cc/base/hash_pair.h" | |
| 14 #include "cc/base/region.h" | 14 #include "cc/base/region.h" |
| 15 #include "cc/base/scoped_ptr_hash_map.h" | 15 #include "cc/base/scoped_ptr_hash_map.h" |
| 16 #include "cc/base/tiling_data.h" | 16 #include "cc/base/tiling_data.h" |
| 17 #include "ui/gfx/rect.h" | 17 #include "ui/gfx/rect.h" |
| 18 | 18 |
| 19 namespace cc { | 19 namespace cc { |
| 20 | 20 |
| 21 class CC_EXPORT LayerTilingData { | 21 class CC_EXPORT LayerTilingData { |
| 22 public: | 22 public: |
| 23 enum BorderTexelOption { | 23 enum BorderTexelOption { |
| (...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 98 | 98 |
| 99 TileMap tiles_; | 99 TileMap tiles_; |
| 100 TilingData tiling_data_; | 100 TilingData tiling_data_; |
| 101 | 101 |
| 102 DISALLOW_COPY(LayerTilingData); | 102 DISALLOW_COPY(LayerTilingData); |
| 103 }; | 103 }; |
| 104 | 104 |
| 105 } // namespace cc | 105 } // namespace cc |
| 106 | 106 |
| 107 #endif // CC_RESOURCES_LAYER_TILING_DATA_H_ | 107 #endif // CC_RESOURCES_LAYER_TILING_DATA_H_ |
| OLD | NEW |