| 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 <map> | 8 #include <map> |
| 9 #include <string> | 9 #include <string> |
| 10 #include <vector> | 10 #include <vector> |
| 11 | 11 |
| 12 #include "cc/base/cc_export.h" | 12 #include "cc/base/cc_export.h" |
| 13 #include "cc/base/scoped_ptr_vector.h" | |
| 14 #include "cc/layers/layer_impl.h" | 13 #include "cc/layers/layer_impl.h" |
| 15 #include "cc/tiles/picture_layer_tiling.h" | 14 #include "cc/tiles/picture_layer_tiling.h" |
| 16 #include "cc/tiles/picture_layer_tiling_set.h" | 15 #include "cc/tiles/picture_layer_tiling_set.h" |
| 17 #include "cc/tiles/tiling_set_eviction_queue.h" | 16 #include "cc/tiles/tiling_set_eviction_queue.h" |
| 18 #include "skia/ext/refptr.h" | 17 #include "skia/ext/refptr.h" |
| 19 #include "third_party/skia/include/core/SkPicture.h" | 18 #include "third_party/skia/include/core/SkPicture.h" |
| 20 | 19 |
| 21 namespace cc { | 20 namespace cc { |
| 22 | 21 |
| 23 struct AppendQuadsData; | 22 struct AppendQuadsData; |
| (...skipping 148 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 172 // of comparing pointers, since objects pointed to are not guaranteed to | 171 // of comparing pointers, since objects pointed to are not guaranteed to |
| 173 // exist. | 172 // exist. |
| 174 std::vector<PictureLayerTiling*> last_append_quads_tilings_; | 173 std::vector<PictureLayerTiling*> last_append_quads_tilings_; |
| 175 | 174 |
| 176 DISALLOW_COPY_AND_ASSIGN(PictureLayerImpl); | 175 DISALLOW_COPY_AND_ASSIGN(PictureLayerImpl); |
| 177 }; | 176 }; |
| 178 | 177 |
| 179 } // namespace cc | 178 } // namespace cc |
| 180 | 179 |
| 181 #endif // CC_LAYERS_PICTURE_LAYER_IMPL_H_ | 180 #endif // CC_LAYERS_PICTURE_LAYER_IMPL_H_ |
| OLD | NEW |