| OLD | NEW |
| 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef BASE_LOCK_H_ | 5 #ifndef BASE_LOCK_H_ |
| 6 #define BASE_LOCK_H_ | 6 #define BASE_LOCK_H_ |
| 7 | 7 |
| 8 #include "base/lock_impl.h" | 8 #include "base/lock_impl.h" |
| 9 | 9 |
| 10 // A convenient wrapper for an OS specific critical section. | 10 // A convenient wrapper for an OS specific critical section. |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 59 } | 59 } |
| 60 | 60 |
| 61 ~AutoUnlock() { | 61 ~AutoUnlock() { |
| 62 lock_->Acquire(); | 62 lock_->Acquire(); |
| 63 } | 63 } |
| 64 | 64 |
| 65 Lock* lock_; | 65 Lock* lock_; |
| 66 }; | 66 }; |
| 67 | 67 |
| 68 #endif // BASE_LOCK_H_ | 68 #endif // BASE_LOCK_H_ |
| 69 | |
| OLD | NEW |