| Index: ppapi/shared_impl/compositor_layer_data.cc
|
| diff --git a/ppapi/shared_impl/compositor_layer_data.cc b/ppapi/shared_impl/compositor_layer_data.cc
|
| index a4b51d379c9a1906fa2aef165fd73d153e8a8797..73ad43bc35a8033e50d39fc07ce3a7a0cb8c9d91 100644
|
| --- a/ppapi/shared_impl/compositor_layer_data.cc
|
| +++ b/ppapi/shared_impl/compositor_layer_data.cc
|
| @@ -8,8 +8,8 @@ namespace ppapi {
|
|
|
| namespace {
|
|
|
| -template<typename T>
|
| -void Copy(scoped_ptr<T>* a, const scoped_ptr<T>& b) {
|
| +template <typename T>
|
| +void Copy(std::unique_ptr<T>* a, const std::unique_ptr<T>& b) {
|
| if (b) {
|
| if (!(*a))
|
| a->reset(new T());
|
|
|