| Index: shell/app_child_process_host.cc
|
| diff --git a/mojo/shell/app_child_process_host.cc b/shell/app_child_process_host.cc
|
| similarity index 89%
|
| rename from mojo/shell/app_child_process_host.cc
|
| rename to shell/app_child_process_host.cc
|
| index 8da47727801806e73921f8039cc80f9af3150499..d6cf7f029175c36088f767e3c9b734c1af4d0048 100644
|
| --- a/mojo/shell/app_child_process_host.cc
|
| +++ b/shell/app_child_process_host.cc
|
| @@ -2,15 +2,15 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| -#include "mojo/shell/app_child_process_host.h"
|
| +#include "shell/app_child_process_host.h"
|
|
|
| #include "base/bind.h"
|
| #include "base/logging.h"
|
| #include "base/message_loop/message_loop.h"
|
| #include "mojo/edk/embedder/embedder.h"
|
| #include "mojo/public/cpp/system/core.h"
|
| -#include "mojo/shell/context.h"
|
| -#include "mojo/shell/task_runners.h"
|
| +#include "shell/context.h"
|
| +#include "shell/task_runners.h"
|
|
|
| namespace mojo {
|
| namespace shell {
|
| @@ -30,8 +30,7 @@ void AppChildProcessHost::WillStart() {
|
| DCHECK(platform_channel()->is_valid());
|
|
|
| mojo::ScopedMessagePipeHandle handle(embedder::CreateChannel(
|
| - platform_channel()->Pass(),
|
| - context()->task_runners()->io_runner(),
|
| + platform_channel()->Pass(), context()->task_runners()->io_runner(),
|
| base::Bind(&AppChildProcessHost::DidCreateChannel,
|
| base::Unretained(this)),
|
| base::MessageLoop::current()->message_loop_proxy()));
|
|
|