| Index: chrome/common/ipc_tests.cc
|
| ===================================================================
|
| --- chrome/common/ipc_tests.cc (revision 5371)
|
| +++ chrome/common/ipc_tests.cc (working copy)
|
| @@ -377,14 +377,14 @@
|
| CommandLine::AppendSwitch(&cl, switches::kDebugOnStart);
|
| }
|
| HANDLE process = NULL;
|
| - if (!process_util::LaunchApp(cl, false, true, &process))
|
| + if (!base::LaunchApp(cl, false, true, &process))
|
| return NULL;
|
|
|
| return process;
|
| }
|
|
|
| int main(int argc, char** argv) {
|
| - process_util::EnableTerminationOnHeapCorruption();
|
| + base::EnableTerminationOnHeapCorruption();
|
| // Some tests may use base::Singleton<>, thus we need to instanciate
|
| // the AtExitManager or else we will leak objects.
|
| base::AtExitManager at_exit_manager;
|
|
|