diff options
author | deanm@google.com <deanm@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-08-25 13:54:18 +0000 |
---|---|---|
committer | deanm@google.com <deanm@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-08-25 13:54:18 +0000 |
commit | 7d0f9445f4ffb50dc1d72bc2f5ce329ccfec7cad (patch) | |
tree | 668755bb0e584a311f5c22e24f1c48e0e47d0c56 /chrome/test/ui | |
parent | 302bdc13a9baebb21894673e7674f4e0361cfe97 (diff) | |
download | chromium_src-7d0f9445f4ffb50dc1d72bc2f5ce329ccfec7cad.zip chromium_src-7d0f9445f4ffb50dc1d72bc2f5ce329ccfec7cad.tar.gz chromium_src-7d0f9445f4ffb50dc1d72bc2f5ce329ccfec7cad.tar.bz2 |
Make PlatformThread::SetName operate only on the current thread.
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@1306 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/test/ui')
-rw-r--r-- | chrome/test/ui/run_all_unittests.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/test/ui/run_all_unittests.cc b/chrome/test/ui/run_all_unittests.cc index 5c60d57..f4c0116 100644 --- a/chrome/test/ui/run_all_unittests.cc +++ b/chrome/test/ui/run_all_unittests.cc @@ -11,7 +11,7 @@ int main(int argc, char **argv) { // the AtExitManager or else we will leak objects. base::AtExitManager at_exit_manager; - PlatformThread::SetName(PlatformThread::CurrentId(), "Tests_Main"); + PlatformThread::SetName("Tests_Main"); return UITestSuite(argc, argv).Run(); } |