| 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 CC_LAYERS_PICTURE_LAYER_IMPL_H_ | 5 #ifndef CC_LAYERS_PICTURE_LAYER_IMPL_H_ |
| 6 #define CC_LAYERS_PICTURE_LAYER_IMPL_H_ | 6 #define CC_LAYERS_PICTURE_LAYER_IMPL_H_ |
| 7 | 7 |
| 8 #include <stddef.h> | 8 #include <stddef.h> |
| 9 | 9 |
| 10 #include <map> | 10 #include <map> |
| 11 #include <string> | 11 #include <string> |
| 12 #include <vector> | 12 #include <vector> |
| 13 | 13 |
| 14 #include "base/macros.h" | 14 #include "base/macros.h" |
| 15 #include "base/memory/ptr_util.h" | 15 #include "base/memory/ptr_util.h" |
| 16 #include "cc/base/cc_export.h" | 16 #include "cc/cc_export.h" |
| 17 #include "cc/layers/layer.h" | 17 #include "cc/layers/layer.h" |
| 18 #include "cc/layers/layer_impl.h" | 18 #include "cc/layers/layer_impl.h" |
| 19 #include "cc/playback/image_id.h" | 19 #include "cc/paint/image_id.h" |
| 20 #include "cc/tiles/picture_layer_tiling.h" | 20 #include "cc/tiles/picture_layer_tiling.h" |
| 21 #include "cc/tiles/picture_layer_tiling_set.h" | 21 #include "cc/tiles/picture_layer_tiling_set.h" |
| 22 #include "cc/tiles/tiling_set_eviction_queue.h" | 22 #include "cc/tiles/tiling_set_eviction_queue.h" |
| 23 | 23 |
| 24 namespace cc { | 24 namespace cc { |
| 25 | 25 |
| 26 struct AppendQuadsData; | 26 struct AppendQuadsData; |
| 27 class MicroBenchmarkImpl; | 27 class MicroBenchmarkImpl; |
| 28 class Tile; | 28 class Tile; |
| 29 | 29 |
| (...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 165 // of comparing pointers, since objects pointed to are not guaranteed to | 165 // of comparing pointers, since objects pointed to are not guaranteed to |
| 166 // exist. | 166 // exist. |
| 167 std::vector<PictureLayerTiling*> last_append_quads_tilings_; | 167 std::vector<PictureLayerTiling*> last_append_quads_tilings_; |
| 168 | 168 |
| 169 DISALLOW_COPY_AND_ASSIGN(PictureLayerImpl); | 169 DISALLOW_COPY_AND_ASSIGN(PictureLayerImpl); |
| 170 }; | 170 }; |
| 171 | 171 |
| 172 } // namespace cc | 172 } // namespace cc |
| 173 | 173 |
| 174 #endif // CC_LAYERS_PICTURE_LAYER_IMPL_H_ | 174 #endif // CC_LAYERS_PICTURE_LAYER_IMPL_H_ |
| OLD | NEW |