| Index: content/browser/mojo/mojo_app_connection_impl.cc
|
| diff --git a/content/browser/mojo/mojo_app_connection_impl.cc b/content/browser/mojo/mojo_app_connection_impl.cc
|
| index b2941e2a5dc17cf8dfbded0d91c51a428f0e3f50..8e4cd8c5f66a1407e20435d6fb58662351c8add6 100644
|
| --- a/content/browser/mojo/mojo_app_connection_impl.cc
|
| +++ b/content/browser/mojo/mojo_app_connection_impl.cc
|
| @@ -20,11 +20,11 @@ void OnGotInstanceID(mojo::shell::mojom::ConnectResult result,
|
| } // namespace
|
|
|
| // static
|
| -scoped_ptr<MojoAppConnection> MojoAppConnection::Create(
|
| +std::unique_ptr<MojoAppConnection> MojoAppConnection::Create(
|
| const std::string& user_id,
|
| const std::string& name,
|
| const std::string& requestor_name) {
|
| - return scoped_ptr<MojoAppConnection>(
|
| + return std::unique_ptr<MojoAppConnection>(
|
| new MojoAppConnectionImpl(user_id, name, requestor_name));
|
| }
|
|
|
|
|