| Index: shell/shell_test_main.cc
|
| diff --git a/shell/shell_test_main.cc b/shell/shell_test_main.cc
|
| index d13238c29388a59965d095d3dca18ba467f50403..abf609f45e602584192558b56521849f6f8d62ab 100644
|
| --- a/shell/shell_test_main.cc
|
| +++ b/shell/shell_test_main.cc
|
| @@ -2,6 +2,7 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| +#include "base/at_exit.h"
|
| #include "base/bind.h"
|
| #include "base/command_line.h"
|
| #include "base/logging.h"
|
| @@ -17,6 +18,7 @@ int main(int argc, char** argv) {
|
| *base::CommandLine::ForCurrentProcess();
|
|
|
| if (command_line.HasSwitch(switches::kChildProcessType)) {
|
| + base::AtExitManager at_exit;
|
| scoped_ptr<mojo::shell::ChildProcess> child_process =
|
| mojo::shell::ChildProcess::Create(command_line);
|
| CHECK(child_process);
|
|
|