| Index: net/base/cookie_monster.h
|
| diff --git a/net/base/cookie_monster.h b/net/base/cookie_monster.h
|
| index 6a17d38b1112f28b5d722aa12eda6e2801502b29..b2e3d2b6e3706ea3ec3ea76f7f09ded036ff2ec2 100644
|
| --- a/net/base/cookie_monster.h
|
| +++ b/net/base/cookie_monster.h
|
| @@ -15,9 +15,9 @@
|
|
|
| #include "base/basictypes.h"
|
| #include "base/gtest_prod_util.h"
|
| -#include "base/lock.h"
|
| #include "base/ref_counted.h"
|
| #include "base/scoped_ptr.h"
|
| +#include "base/synchronization/lock.h"
|
| #include "base/task.h"
|
| #include "base/time.h"
|
| #include "net/base/cookie_store.h"
|
| @@ -485,7 +485,7 @@ class CookieMonster : public CookieStore {
|
| scoped_refptr<Delegate> delegate_;
|
|
|
| // Lock for thread-safety
|
| - Lock lock_;
|
| + base::Lock lock_;
|
|
|
| base::Time last_statistic_record_time_;
|
|
|
|
|