| Index: chrome/browser/child_process_security_policy.h
|
| diff --git a/chrome/browser/child_process_security_policy.h b/chrome/browser/child_process_security_policy.h
|
| index 92804008165b34e4d540a308e6bbd2d6c951076d..dd2244d9a171d54ab36d2b6a2c9a8ef76cb9f87c 100644
|
| --- a/chrome/browser/child_process_security_policy.h
|
| +++ b/chrome/browser/child_process_security_policy.h
|
| @@ -13,8 +13,8 @@
|
|
|
| #include "base/basictypes.h"
|
| #include "base/gtest_prod_util.h"
|
| -#include "base/lock.h"
|
| #include "base/singleton.h"
|
| +#include "base/synchronization/lock.h"
|
|
|
| class FilePath;
|
| class GURL;
|
| @@ -141,7 +141,7 @@ class ChildProcessSecurityPolicy {
|
|
|
| // You must acquire this lock before reading or writing any members of this
|
| // class. You must not block while holding this lock.
|
| - Lock lock_;
|
| + base::Lock lock_;
|
|
|
| // These schemes are white-listed for all child processes. This set is
|
| // protected by |lock_|.
|
|
|