diff options
author | maruel@chromium.org <maruel@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-06-11 19:10:30 +0000 |
---|---|---|
committer | maruel@chromium.org <maruel@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-06-11 19:10:30 +0000 |
commit | baead4f9f167731fc67d6fe5e8d8270057c7e530 (patch) | |
tree | d990edeb0aed8a1cab94421f066835eef8f57128 /chrome/test/ui | |
parent | d50ec48c066f8933357da543ae3b93ab3c983759 (diff) | |
download | chromium_src-baead4f9f167731fc67d6fe5e8d8270057c7e530.zip chromium_src-baead4f9f167731fc67d6fe5e8d8270057c7e530.tar.gz chromium_src-baead4f9f167731fc67d6fe5e8d8270057c7e530.tar.bz2 |
Minor cleanups of usage of process_util code.
BUG=none
TEST=none
Review URL: http://codereview.chromium.org/2791006
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@49568 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/test/ui')
-rw-r--r-- | chrome/test/ui/ui_test.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/test/ui/ui_test.cc b/chrome/test/ui/ui_test.cc index 7312b8c..5afd1a7 100644 --- a/chrome/test/ui/ui_test.cc +++ b/chrome/test/ui/ui_test.cc @@ -113,7 +113,7 @@ UITestBase::UITestBase() homepage_(L"about:blank"), wait_for_initial_loads_(true), dom_automation_enabled_(false), - process_(0), // NULL on Windows, 0 PID on POSIX. + process_(base::kNullProcessHandle), process_id_(-1), show_window_(false), clear_profile_(true), @@ -139,7 +139,7 @@ UITestBase::UITestBase(MessageLoop::Type msg_loop_type) homepage_(L"about:blank"), wait_for_initial_loads_(true), dom_automation_enabled_(false), - process_(0), // NULL on Windows, 0 PID on POSIX. + process_(base::kNullProcessHandle), process_id_(-1), show_window_(false), clear_profile_(true), |