| Index: athena/main/athena_launcher.cc
|
| diff --git a/athena/main/athena_launcher.cc b/athena/main/athena_launcher.cc
|
| index e85975d18f7f1dbe4efdc845c03769717cbca697..f971ae67a4ab78c3ac92b006a25a7d130e6ddbe1 100644
|
| --- a/athena/main/athena_launcher.cc
|
| +++ b/athena/main/athena_launcher.cc
|
| @@ -83,7 +83,7 @@ class VirtualKeyboardObserver : public keyboard::KeyboardControllerObserver {
|
| DISALLOW_COPY_AND_ASSIGN(VirtualKeyboardObserver);
|
| };
|
|
|
| -void StartAthenaEnv(scoped_refptr<base::TaskRunner> file_runner) {
|
| +void StartAthenaEnv(scoped_refptr<base::TaskRunner> blocking_task_runner) {
|
| athena::AthenaEnv::Create();
|
|
|
| base::CommandLine* command_line = base::CommandLine::ForCurrentProcess();
|
| @@ -109,7 +109,7 @@ void StartAthenaEnv(scoped_refptr<base::TaskRunner> file_runner) {
|
|
|
| athena::InputManager::Create()->OnRootWindowCreated(root_window);
|
| athena::ScreenManager::Create(root_window);
|
| - athena::SystemUI::Create(file_runner);
|
| + athena::SystemUI::Create(blocking_task_runner);
|
| athena::WindowManager::Create();
|
| athena::AppRegistry::Create();
|
| SetupBackgroundImage();
|
|
|