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

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

Issue 99129: Remove platform defines now that things work on Mac. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 11 years, 8 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 | « no previous file | 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
===================================================================
--- chrome/test/ui/ui_test.cc (revision 14728)
+++ chrome/test/ui/ui_test.cc (working copy)
@@ -446,16 +446,10 @@
}
void UITest::AssertAppNotRunning(const std::wstring& error_message) {
-#if defined(OS_WIN) || defined(OS_LINUX)
ASSERT_EQ(0, GetBrowserProcessCount()) << error_message;
-#else
- // TODO(port): Enable when chrome_process_util is ported.
- NOTIMPLEMENTED();
-#endif
}
void UITest::CleanupAppProcesses() {
-#if defined(OS_WIN) || defined(OS_LINUX)
TerminateAllChromeProcesses(user_data_dir());
// Suppress spammy failures that seem to be occurring when running
@@ -463,10 +457,6 @@
// TODO(jhughes): figure out why this is necessary at all, and fix it
if (!in_process_renderer_)
AssertAppNotRunning(L"Unable to quit all browser processes.");
-#else
- // TODO(port): depends on chrome_process_util.
- NOTIMPLEMENTED();
-#endif
}
TabProxy* UITest::GetActiveTab(int window_index) {
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698