summaryrefslogtreecommitdiffstats
path: root/chrome/common/ipc_tests.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/common/ipc_tests.cc')
-rw-r--r--chrome/common/ipc_tests.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/common/ipc_tests.cc b/chrome/common/ipc_tests.cc
index 3b73de9..251e970 100644
--- a/chrome/common/ipc_tests.cc
+++ b/chrome/common/ipc_tests.cc
@@ -377,14 +377,14 @@ HANDLE SpawnChild(ChildType child_type) {
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;