diff options
author | nirnimesh@chromium.org <nirnimesh@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-01-08 02:04:59 +0000 |
---|---|---|
committer | nirnimesh@chromium.org <nirnimesh@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-01-08 02:04:59 +0000 |
commit | c405290f60432b22e8e862377b4f00e6177b4451 (patch) | |
tree | a710eb4876a4ea9013715ba90a27139d5da835bc /chrome/test/reliability | |
parent | 079443435c92b0294d63682c39a26df3391018c4 (diff) | |
download | chromium_src-c405290f60432b22e8e862377b4f00e6177b4451.zip chromium_src-c405290f60432b22e8e862377b4f00e6177b4451.tar.gz chromium_src-c405290f60432b22e8e862377b4f00e6177b4451.tar.bz2 |
Moves everything related to launching and terminating the browser from UITestBase into ProxyLauncher.
The primary changes are in ui_test.* and proxy_launcher.*. The changes in the remaining files are mostly just changing namespaces from UITestBase:: to ProxyLauncher::.
BUG=None.
TEST=All tests should pass. No functionality change.
Review URL: http://codereview.chromium.org/5967003
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@70827 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/test/reliability')
-rw-r--r-- | chrome/test/reliability/page_load_test.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/test/reliability/page_load_test.cc b/chrome/test/reliability/page_load_test.cc index 2aeb0a7a..a799c1d 100644 --- a/chrome/test/reliability/page_load_test.cc +++ b/chrome/test/reliability/page_load_test.cc @@ -331,7 +331,7 @@ class PageLoadTest : public UITest { // Also don't run if running as a standalone program which is for // distributed testing, to avoid mistakenly hitting web sites with many // instances. - if (in_process_renderer() || g_stand_alone) + if (ProxyLauncher::in_process_renderer() || g_stand_alone) return; // For usage 1 NavigationMetrics metrics; |