diff options
Diffstat (limited to 'chrome/browser/child_process_launcher.cc')
-rw-r--r-- | chrome/browser/child_process_launcher.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/browser/child_process_launcher.cc b/chrome/browser/child_process_launcher.cc index 6058cc8..598bbef 100644 --- a/chrome/browser/child_process_launcher.cc +++ b/chrome/browser/child_process_launcher.cc @@ -7,9 +7,9 @@ #include <utility> // For std::pair. #include "base/command_line.h" -#include "base/lock.h" #include "base/logging.h" #include "base/scoped_ptr.h" +#include "base/synchronization/lock.h" #include "base/threading/thread.h" #include "chrome/browser/browser_thread.h" #include "chrome/common/chrome_descriptors.h" @@ -174,7 +174,7 @@ class ChildProcessLauncher::Context // AddPlaceholderForPid(), enabling proper cleanup. { // begin scope for AutoLock MachBroker* broker = MachBroker::GetInstance(); - AutoLock lock(broker->GetLock()); + base::AutoLock lock(broker->GetLock()); // This call to |PrepareForFork()| will start the MachBroker listener // thread, if it is not already running. Therefore the browser process |