Chromium Code Reviews| Index: ash/shell.cc |
| diff --git a/ash/shell.cc b/ash/shell.cc |
| index ff446835ff9948573fcd978ba1d39c9ae56fcac9..0773df6ba862bb6370360eb15883d3fecbf82683 100644 |
| --- a/ash/shell.cc |
| +++ b/ash/shell.cc |
| @@ -1108,7 +1108,8 @@ void Shell::Init(const ShellInitParams& init_params) { |
| // WindowTreeHostManager::InitDisplays() |
| // since TouchTransformerController listens on |
| // WindowTreeHostManager::Observer::OnDisplaysInitialized(). |
| - touch_transformer_controller_.reset(new TouchTransformerController()); |
| + if (!in_mus_) |
| + touch_transformer_controller_.reset(new TouchTransformerController()); |
|
sadrul
2016/06/07 03:39:25
This could be a separate CL
kylechar
2016/06/07 16:36:41
Done.
|
| #endif // defined(OS_CHROMEOS) |
| keyboard_ui_ = init_params.keyboard_factory.is_null() |