| Index: shell/app_child_process.cc
|
| diff --git a/shell/app_child_process.cc b/shell/app_child_process.cc
|
| index 2beedee4719975b34b31378bc437b4a0ad2c2b45..005403756ebc6bb84056d84211b8cee804c1f952 100644
|
| --- a/shell/app_child_process.cc
|
| +++ b/shell/app_child_process.cc
|
| @@ -88,8 +88,7 @@ class AppContext : public embedder::ProcessDelegate {
|
|
|
| void Init() {
|
| // Initialize Mojo before starting any threads.
|
| - embedder::Init(scoped_ptr<mojo::embedder::PlatformSupport>(
|
| - new mojo::embedder::SimplePlatformSupport()));
|
| + embedder::Init(make_scoped_ptr(new embedder::SimplePlatformSupport()));
|
|
|
| // Create and start our I/O thread.
|
| base::Thread::Options io_thread_options(base::MessageLoop::TYPE_IO, 0);
|
| @@ -246,7 +245,7 @@ class AppChildControllerImpl : public AppChildController, public ErrorHandler {
|
| const base::FilePath& app_path,
|
| NativeRunner::CleanupBehavior cleanup_behavior,
|
| InterfaceRequest<Application> application_request) {
|
| - // TODO(vtl): This is copied from in_process_dynamic_service_runner.cc.
|
| + // TODO(vtl): This is copied from in_process_native_runner.cc.
|
| DVLOG(2) << "Loading/running Mojo app from " << app_path.value()
|
| << " out of process";
|
|
|
|
|