| Index: remoting/host/desktop_resizer.h
|
| diff --git a/remoting/host/desktop_resizer.h b/remoting/host/desktop_resizer.h
|
| index 0b103fcc2d4488cadab7b416f4d165573b0b6c02..e08dcd054e990b409ae4b9e6a051a7ca79b2a371 100644
|
| --- a/remoting/host/desktop_resizer.h
|
| +++ b/remoting/host/desktop_resizer.h
|
| @@ -6,8 +6,8 @@
|
| #define REMOTING_HOST_DESKTOP_RESIZER_H_
|
|
|
| #include <list>
|
| +#include <memory>
|
|
|
| -#include "base/memory/scoped_ptr.h"
|
| #include "remoting/host/screen_resolution.h"
|
|
|
| namespace remoting {
|
| @@ -17,7 +17,7 @@ class DesktopResizer {
|
| virtual ~DesktopResizer() {}
|
|
|
| // Create a platform-specific DesktopResizer instance.
|
| - static scoped_ptr<DesktopResizer> Create();
|
| + static std::unique_ptr<DesktopResizer> Create();
|
|
|
| // Return the current resolution of the desktop.
|
| virtual ScreenResolution GetCurrentResolution() = 0;
|
|
|