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

Unified Diff: chrome/test/startup/shutdown_test.cc

Issue 5967003: Refactor UITestBase/ProxyLauncher. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Changes per Paweł's comments. Created 9 years, 12 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
Index: chrome/test/startup/shutdown_test.cc
diff --git a/chrome/test/startup/shutdown_test.cc b/chrome/test/startup/shutdown_test.cc
index a0d64e1e2e64afc9c1602b7c1cff60c28186da6c..5b449bbc1a3b0ea8e347e29deeac425087cc8f5d 100644
--- a/chrome/test/startup/shutdown_test.cc
+++ b/chrome/test/startup/shutdown_test.cc
@@ -66,7 +66,7 @@ class ShutdownTest : public UIPerfTest {
void RunShutdownTest(const char* graph, const char* trace,
bool important, TestSize test_size,
- UITest::ShutdownType shutdown_type) {
+ ProxyLauncher::ShutdownType shutdown_type) {
const int kNumCyclesMax = 20;
int numCycles = kNumCyclesMax;
scoped_ptr<base::Environment> env(base::Environment::Create());
@@ -113,27 +113,28 @@ class ShutdownTest : public UIPerfTest {
TEST_F(ShutdownTest, SimpleWindowClose) {
RunShutdownTest("shutdown", "simple-window-close",
- true, /* important */ SIMPLE, UITest::WINDOW_CLOSE);
+ true, /* important */ SIMPLE, ProxyLauncher::WINDOW_CLOSE);
}
TEST_F(ShutdownTest, SimpleUserQuit) {
RunShutdownTest("shutdown", "simple-user-quit",
- true, /* important */ SIMPLE, UITest::USER_QUIT);
+ true, /* important */ SIMPLE, ProxyLauncher::USER_QUIT);
}
TEST_F(ShutdownTest, SimpleSessionEnding) {
RunShutdownTest("shutdown", "simple-session-ending",
- true, /* important */ SIMPLE, UITest::SESSION_ENDING);
+ true, /* important */ SIMPLE, ProxyLauncher::SESSION_ENDING);
}
TEST_F(ShutdownTest, TwentyTabsWindowClose) {
RunShutdownTest("shutdown", "twentytabs-window-close",
- true, /* important */ TWENTY_TABS, UITest::WINDOW_CLOSE);
+ true, /* important */ TWENTY_TABS,
+ ProxyLauncher::WINDOW_CLOSE);
}
TEST_F(ShutdownTest, TwentyTabsUserQuit) {
RunShutdownTest("shutdown", "twentytabs-user-quit",
- true, /* important */ TWENTY_TABS, UITest::USER_QUIT);
+ true, /* important */ TWENTY_TABS, ProxyLauncher::USER_QUIT);
}
// http://crbug.com/40671
@@ -145,7 +146,8 @@ TEST_F(ShutdownTest, TwentyTabsUserQuit) {
TEST_F(ShutdownTest, MAYBE_TwentyTabsSessionEnding) {
RunShutdownTest("shutdown", "twentytabs-session-ending",
- true, /* important */ TWENTY_TABS, UITest::SESSION_ENDING);
+ true, /* important */ TWENTY_TABS,
+ ProxyLauncher::SESSION_ENDING);
}
} // namespace

Powered by Google App Engine
This is Rietveld 408576698