| Index: chrome/test/base/mash_browser_tests_main.cc
|
| diff --git a/chrome/test/base/mash_browser_tests_main.cc b/chrome/test/base/mash_browser_tests_main.cc
|
| index 52c1055ff68f41914c72b1212aca51ac738c8179..e20f3e12873316422202c9bd21127a29a0282dae 100644
|
| --- a/chrome/test/base/mash_browser_tests_main.cc
|
| +++ b/chrome/test/base/mash_browser_tests_main.cc
|
| @@ -7,6 +7,7 @@
|
| #include "base/at_exit.h"
|
| #include "base/command_line.h"
|
| #include "base/debug/debugger.h"
|
| +#include "base/debug/stack_trace.h"
|
| #include "base/i18n/icu_util.h"
|
| #include "base/memory/ptr_util.h"
|
| #include "base/message_loop/message_loop.h"
|
| @@ -152,6 +153,11 @@ bool RunMashBrowserTests(int argc, char** argv, int* exit_code) {
|
| base::AtExitManager exit_manager;
|
| #endif
|
| base::i18n::InitializeICU();
|
| +
|
| +#if !defined(OFFICIAL_BUILD)
|
| + base::debug::EnableInProcessStackDumping();
|
| +#endif
|
| +
|
| service_manager::RunStandaloneService(base::Bind(&StartChildApp));
|
| *exit_code = 0;
|
| return true;
|
|
|