| Index: chrome/app/mash/mash_runner.cc
|
| diff --git a/chrome/app/mash/mash_runner.cc b/chrome/app/mash/mash_runner.cc
|
| index d5086ec61003d95db27dc5df9b8bf95cdd6fc551..1df776378f1dd3bc811a3344cf1a1a07e516c6b4 100644
|
| --- a/chrome/app/mash/mash_runner.cc
|
| +++ b/chrome/app/mash/mash_runner.cc
|
| @@ -22,7 +22,6 @@
|
| #include "base/process/launch.h"
|
| #include "base/process/process.h"
|
| #include "base/run_loop.h"
|
| -#include "base/sys_info.h"
|
| #include "base/task_scheduler/task_scheduler.h"
|
| #include "base/threading/sequenced_worker_pool.h"
|
| #include "base/threading/thread.h"
|
| @@ -150,8 +149,7 @@ MashRunner::MashRunner() {}
|
| MashRunner::~MashRunner() {}
|
|
|
| int MashRunner::Run() {
|
| - base::TaskScheduler::CreateAndSetSimpleTaskScheduler(
|
| - base::SysInfo::NumberOfProcessors());
|
| + base::TaskScheduler::CreateAndSetSimpleTaskScheduler("MashRunner");
|
|
|
| if (IsChild())
|
| return RunChild();
|
|
|