| Index: chrome/browser/cross_site_request_manager.h
|
| diff --git a/chrome/browser/cross_site_request_manager.h b/chrome/browser/cross_site_request_manager.h
|
| index 6c90b24c5937d7b957f7522e4d68d3b62e604056..6615ad1e3c574a88500d99a295d078b9bf286f10 100644
|
| --- a/chrome/browser/cross_site_request_manager.h
|
| +++ b/chrome/browser/cross_site_request_manager.h
|
| @@ -10,7 +10,7 @@
|
| #include <utility>
|
|
|
| #include "base/basictypes.h"
|
| -#include "base/lock.h"
|
| +#include "base/synchronization/lock.h"
|
|
|
| template <typename T> struct DefaultSingletonTraits;
|
|
|
| @@ -47,7 +47,7 @@ class CrossSiteRequestManager {
|
|
|
| // 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_;
|
|
|
| // Set of (render_process_host_id, render_view_id) pairs of all
|
| // RenderViewHosts that have pending cross-site requests. Used to pass
|
|
|