Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(428)

Unified Diff: chrome/test/ui/ui_test.cc

Issue 2060004: Removing the app launcher button on ChromeOS (Closed) Base URL: git://codf21.jail/chromium.git
Patch Set: One more clean up Created 10 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/test/in_process_browser_test.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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() {
« no previous file with comments | « chrome/test/in_process_browser_test.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698