| Index: chrome/test/page_cycler/page_cycler_test.cc
|
| diff --git a/chrome/test/page_cycler/page_cycler_test.cc b/chrome/test/page_cycler/page_cycler_test.cc
|
| index f8a80d0af31e1d4fb6b0eb0d3003ddaa705c804f..5b300b77e8b74159e3f9be23bbf52cab48baac0f 100644
|
| --- a/chrome/test/page_cycler/page_cycler_test.cc
|
| +++ b/chrome/test/page_cycler/page_cycler_test.cc
|
| @@ -148,7 +148,7 @@ class PageCyclerTest : public UITest {
|
| ChromeProcessList::const_iterator it;
|
| for (it = chrome_processes.begin(); it != chrome_processes.end(); ++it) {
|
| base::ProcessHandle process_handle;
|
| - if (!base::OpenProcessHandle(*it, &process_handle)) {
|
| + if (!base::OpenPrivilegedProcessHandle(*it, &process_handle)) {
|
| NOTREACHED();
|
| }
|
|
|
| @@ -218,7 +218,7 @@ class PageCyclerTest : public UITest {
|
| ChromeProcessList::const_iterator it;
|
| for (it = chrome_processes.begin(); it != chrome_processes.end(); ++it) {
|
| base::ProcessHandle process_handle;
|
| - if (!base::OpenProcessHandle(*it, &process_handle)) {
|
| + if (!base::OpenPrivilegedProcessHandle(*it, &process_handle)) {
|
| NOTREACHED();
|
| }
|
|
|
|
|