| 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_PICTURE_PILE_IMPL_H_ | 5 #ifndef CC_PICTURE_PILE_IMPL_H_ |
| 6 #define CC_PICTURE_PILE_IMPL_H_ | 6 #define CC_PICTURE_PILE_IMPL_H_ |
| 7 | 7 |
| 8 #include <list> | 8 #include <list> |
| 9 #include <map> | 9 #include <map> |
| 10 | 10 |
| 11 #include "cc/cc_export.h" | 11 #include "cc/base/cc_export.h" |
| 12 #include "cc/picture_pile_base.h" | 12 #include "cc/picture_pile_base.h" |
| 13 #include "skia/ext/refptr.h" | 13 #include "skia/ext/refptr.h" |
| 14 #include "third_party/skia/include/core/SkPicture.h" | 14 #include "third_party/skia/include/core/SkPicture.h" |
| 15 | 15 |
| 16 namespace cc { | 16 namespace cc { |
| 17 struct RenderingStats; | 17 struct RenderingStats; |
| 18 | 18 |
| 19 class CC_EXPORT PicturePileImpl : public PicturePileBase { | 19 class CC_EXPORT PicturePileImpl : public PicturePileBase { |
| 20 public: | 20 public: |
| 21 static scoped_refptr<PicturePileImpl> Create(); | 21 static scoped_refptr<PicturePileImpl> Create(); |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 65 | 65 |
| 66 typedef std::vector<scoped_refptr<PicturePileImpl> > PicturePileVector; | 66 typedef std::vector<scoped_refptr<PicturePileImpl> > PicturePileVector; |
| 67 PicturePileVector clones_; | 67 PicturePileVector clones_; |
| 68 | 68 |
| 69 DISALLOW_COPY_AND_ASSIGN(PicturePileImpl); | 69 DISALLOW_COPY_AND_ASSIGN(PicturePileImpl); |
| 70 }; | 70 }; |
| 71 | 71 |
| 72 } // namespace cc | 72 } // namespace cc |
| 73 | 73 |
| 74 #endif // CC_PICTURE_PILE_IMPL_H_ | 74 #endif // CC_PICTURE_PILE_IMPL_H_ |
| OLD | NEW |