| Index: chrome/test/ui/ui_test.cc
|
| diff --git a/chrome/test/ui/ui_test.cc b/chrome/test/ui/ui_test.cc
|
| index d9564784ac0b589cadae932b77dbdd8e502e2367..d8a45bb6ca8ae144b3dda58b26a7e2ca1dd0fb7f 100644
|
| --- a/chrome/test/ui/ui_test.cc
|
| +++ b/chrome/test/ui/ui_test.cc
|
| @@ -130,6 +130,10 @@ UITestBase::UITestBase()
|
| terminate_timeout_ms_(kWaitForTerminateMsec) {
|
| PathService::Get(chrome::DIR_APP, &browser_directory_);
|
| PathService::Get(chrome::DIR_TEST_DATA, &test_data_directory_);
|
| + // TODO(jcivelli): http://crbug.com/44089 We disable the app launcher on new
|
| + // tab behavior for now until it is the default behavior on
|
| + // all platforms.
|
| + launch_arguments_.AppendSwitch(switches::kDisableAppsPanel);
|
| }
|
|
|
| UITestBase::UITestBase(MessageLoop::Type msg_loop_type)
|
| @@ -156,6 +160,10 @@ UITestBase::UITestBase(MessageLoop::Type msg_loop_type)
|
| terminate_timeout_ms_(kWaitForTerminateMsec) {
|
| PathService::Get(chrome::DIR_APP, &browser_directory_);
|
| PathService::Get(chrome::DIR_TEST_DATA, &test_data_directory_);
|
| + // TODO(jcivelli): http://crbug.com/44089 We disable the app launcher on new
|
| + // tab behavior for now until it is the default behavior on
|
| + // all platforms.
|
| + launch_arguments_.AppendSwitch(switches::kDisableAppsPanel);
|
| }
|
|
|
| UITestBase::~UITestBase() {
|
|
|