| Index: chrome/browser/renderer_host/accelerated_surface_container_manager_mac.h
|
| diff --git a/chrome/browser/renderer_host/accelerated_surface_container_manager_mac.h b/chrome/browser/renderer_host/accelerated_surface_container_manager_mac.h
|
| index a2855a4ed8642020c711be52266ac43711c8a18e..be2806a0c48418b8fe0781b95bd0df24b2137129 100644
|
| --- a/chrome/browser/renderer_host/accelerated_surface_container_manager_mac.h
|
| +++ b/chrome/browser/renderer_host/accelerated_surface_container_manager_mac.h
|
| @@ -11,7 +11,7 @@
|
|
|
| #include "app/surface/transport_dib.h"
|
| #include "base/basictypes.h"
|
| -#include "base/lock.h"
|
| +#include "base/synchronization/lock.h"
|
| #include "gfx/native_widget_types.h"
|
|
|
| namespace webkit {
|
| @@ -116,7 +116,7 @@ class AcceleratedSurfaceContainerManagerMac {
|
| // Both |plugin_window_to_container_map_| and the
|
| // AcceleratedSurfaceContainerMac in it are not threadsafe, but accessed from
|
| // multiple threads. All these accesses are guarded by this lock.
|
| - mutable Lock lock_;
|
| + mutable base::Lock lock_;
|
|
|
| DISALLOW_COPY_AND_ASSIGN(AcceleratedSurfaceContainerManagerMac);
|
| };
|
|
|