| Index: components/mus/ws/server_window_surface_manager.cc
|
| diff --git a/components/mus/ws/server_window_surface_manager.cc b/components/mus/ws/server_window_surface_manager.cc
|
| index e9ab658d0295a741991a77299ee057e471b4661b..eb00272255084d25fd7a56b03138c1c29d7d5130 100644
|
| --- a/components/mus/ws/server_window_surface_manager.cc
|
| +++ b/components/mus/ws/server_window_surface_manager.cc
|
| @@ -41,7 +41,7 @@ void ServerWindowSurfaceManager::CreateSurface(
|
| mojom::SurfaceType surface_type,
|
| mojo::InterfaceRequest<mojom::Surface> request,
|
| mojom::SurfaceClientPtr client) {
|
| - scoped_ptr<ServerWindowSurface> surface(new ServerWindowSurface(
|
| + std::unique_ptr<ServerWindowSurface> surface(new ServerWindowSurface(
|
| this, surface_type, std::move(request), std::move(client)));
|
| if (!HasAnySurface()) {
|
| // Only one SurfaceFactoryClient can be registered per surface id namespace,
|
|
|