| Index: ui/ozone/common/native_display_delegate_ozone.cc
|
| diff --git a/ui/ozone/common/native_display_delegate_ozone.cc b/ui/ozone/common/native_display_delegate_ozone.cc
|
| index 24703cd3dd385d76bb5cf7fc3a04a402c993b824..b0a6344dac57ff53f90c20866258ecce04e84131 100644
|
| --- a/ui/ozone/common/native_display_delegate_ozone.cc
|
| +++ b/ui/ozone/common/native_display_delegate_ozone.cc
|
| @@ -5,6 +5,7 @@
|
| #include "ui/ozone/common/native_display_delegate_ozone.h"
|
|
|
| #include "base/logging.h"
|
| +#include "base/memory/ptr_util.h"
|
| #include "ui/ozone/common/display_snapshot_proxy.h"
|
| #include "ui/ozone/common/display_util.h"
|
|
|
| @@ -20,7 +21,7 @@ void NativeDisplayDelegateOzone::Initialize() {
|
| DisplaySnapshot_Params params;
|
| if (CreateSnapshotFromCommandLine(¶ms)) {
|
| DCHECK_NE(DISPLAY_CONNECTION_TYPE_NONE, params.type);
|
| - displays_.push_back(make_scoped_ptr(new DisplaySnapshotProxy(params)));
|
| + displays_.push_back(base::WrapUnique(new DisplaySnapshotProxy(params)));
|
| }
|
| }
|
|
|
|
|