| Index: examples/recursive_content_handler/recursive_content_handler.cc
|
| diff --git a/examples/recursive_content_handler/recursive_content_handler.cc b/examples/recursive_content_handler/recursive_content_handler.cc
|
| index 303092972661f7b31a42b90d09debde6a570b967..31781e2db11e1258b6152f1272b84136d1d4de56 100644
|
| --- a/examples/recursive_content_handler/recursive_content_handler.cc
|
| +++ b/examples/recursive_content_handler/recursive_content_handler.cc
|
| @@ -3,7 +3,6 @@
|
| // found in the LICENSE file.
|
|
|
| #include "base/macros.h"
|
| -#include "base/memory/scoped_ptr.h"
|
| #include "mojo/application/content_handler_factory.h"
|
| #include "mojo/environment/scoped_chromium_init.h"
|
| #include "mojo/public/c/system/main.h"
|
| @@ -29,7 +28,7 @@ class RecursiveContentHandler : public ApplicationImplBase,
|
| }
|
|
|
| // Overridden from ContentHandlerFactory::ManagedDelegate:
|
| - scoped_ptr<ContentHandlerFactory::HandledApplicationHolder>
|
| + std::unique_ptr<ContentHandlerFactory::HandledApplicationHolder>
|
| CreateApplication(InterfaceRequest<Application> application_request,
|
| URLResponsePtr response) override {
|
| LOG(INFO) << "RecursiveContentHandler called with url: " << response->url;
|
|
|