Index: content/zygote/zygote_linux.cc |
diff --git a/content/zygote/zygote_linux.cc b/content/zygote/zygote_linux.cc |
index e9b940e88a76e451384742a46637d51abf0e013e..f0452be07b240b97b94f544f731869d1a77900d7 100644 |
--- a/content/zygote/zygote_linux.cc |
+++ b/content/zygote/zygote_linux.cc |
@@ -374,7 +374,7 @@ int Zygote::ForkWithRealPid(const std::string& process_type, |
CreatePipe(&read_pipe, &write_pipe); |
// This is roughly equivalent to a fork(). We are using ForkWithFlags mainly |
// to give it some more diverse test coverage. |
- pid = sandbox::ForkWithFlags(SIGCHLD, nullptr, nullptr); |
+ pid = base::ForkWithFlags(SIGCHLD, nullptr, nullptr); |
} |
if (pid == 0) { |