| Index: chrome/browser/hang_monitor/hung_window_detector.h
|
| diff --git a/chrome/browser/hang_monitor/hung_window_detector.h b/chrome/browser/hang_monitor/hung_window_detector.h
|
| index 0e4873972eb9bc8c03306db542c6e1e54a0cea29..50ea31f0be9aeefb6cb8e4d745ef7bf7949d44cf 100644
|
| --- a/chrome/browser/hang_monitor/hung_window_detector.h
|
| +++ b/chrome/browser/hang_monitor/hung_window_detector.h
|
| @@ -6,7 +6,7 @@
|
| #define CHROME_BROWSER_HANG_MONITOR_HUNG_WINDOW_DETECTOR_H__
|
| #pragma once
|
|
|
| -#include "base/lock.h"
|
| +#include "base/synchronization/lock.h"
|
| #include "chrome/common/worker_thread_ticker.h"
|
|
|
| // This class provides the following functionality:
|
| @@ -81,7 +81,7 @@ class HungWindowDetector : public WorkerThreadTicker::Callback {
|
|
|
| // How long do we wait before we consider a window hung (in ms)
|
| int message_response_timeout_;
|
| - Lock hang_detection_lock_;
|
| + base::Lock hang_detection_lock_;
|
| // Indicates if this object is currently enumerating hung windows
|
| bool enumerating_;
|
|
|
|
|