| Index: cc/resources/picture_pile_base.h
|
| diff --git a/cc/resources/picture_pile_base.h b/cc/resources/picture_pile_base.h
|
| index 7014107a734e5303cc5ea2cd5bf2c09a8938a88d..35b3f11e61244767330b2c73e49983d19ec6510b 100644
|
| --- a/cc/resources/picture_pile_base.h
|
| +++ b/cc/resources/picture_pile_base.h
|
| @@ -6,6 +6,7 @@
|
| #define CC_RESOURCES_PICTURE_PILE_BASE_H_
|
|
|
| #include <list>
|
| +#include <utility>
|
|
|
| #include "base/hash_tables.h"
|
| #include "base/memory/ref_counted.h"
|
| @@ -21,7 +22,7 @@ namespace cc {
|
| class CC_EXPORT PicturePileBase : public base::RefCounted<PicturePileBase> {
|
| public:
|
| PicturePileBase();
|
| - PicturePileBase(const PicturePileBase* other);
|
| + explicit PicturePileBase(const PicturePileBase* other);
|
| PicturePileBase(const PicturePileBase* other, unsigned thread_index);
|
|
|
| void Resize(gfx::Size size);
|
|
|