| Index: remoting/host/continue_window_linux.cc
|
| diff --git a/remoting/host/continue_window_linux.cc b/remoting/host/continue_window_linux.cc
|
| index b84e49bbe43f73276bfe91830efdbd4b462a8e98..a2175dd5182f2b05d33486a8ac11e80d47e9dbe5 100644
|
| --- a/remoting/host/continue_window_linux.cc
|
| +++ b/remoting/host/continue_window_linux.cc
|
| @@ -102,8 +102,8 @@ void ContinueWindowLinux::OnResponse(GtkWidget* dialog, int response_id) {
|
| Hide();
|
| }
|
|
|
| -ContinueWindow* ContinueWindow::Create() {
|
| - return new ContinueWindowLinux();
|
| +scoped_ptr<ContinueWindow> ContinueWindow::Create() {
|
| + return scoped_ptr<ContinueWindow>(new ContinueWindowLinux());
|
| }
|
|
|
| } // namespace remoting
|
|
|