| Index: content/browser/mojo/mojo_application_host.cc
|
| diff --git a/content/browser/mojo/mojo_application_host.cc b/content/browser/mojo/mojo_application_host.cc
|
| index 029fa5e737a1f7435105e2c41cc02f1bd307d4cb..18219676a3e077ef0eed2d0b0fcbf53927d185bb 100644
|
| --- a/content/browser/mojo/mojo_application_host.cc
|
| +++ b/content/browser/mojo/mojo_application_host.cc
|
| @@ -51,7 +51,7 @@ bool MojoApplicationHost::Init() {
|
| return true;
|
| }
|
|
|
| -bool MojoApplicationHost::Activate(IPC::Sender* sender,
|
| +void MojoApplicationHost::Activate(IPC::Sender* sender,
|
| base::ProcessHandle process_handle) {
|
| DCHECK(!did_activate_);
|
| DCHECK(client_handle_.is_valid());
|
| @@ -60,7 +60,6 @@ bool MojoApplicationHost::Activate(IPC::Sender* sender,
|
| PlatformFileFromScopedPlatformHandle(client_handle_.Pass());
|
| did_activate_ = sender->Send(new MojoMsg_Activate(
|
| IPC::GetFileHandleForProcess(client_file, process_handle, true)));
|
| - return did_activate_;
|
| }
|
|
|
| void MojoApplicationHost::WillDestroySoon() {
|
|
|