Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(633)

Side by Side Diff: base/synchronization/lock.h

Issue 1538743002: Switch to standard integer types in base/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: DEPS roll too Created 4 years, 12 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « base/synchronization/condition_variable_win.cc ('k') | base/synchronization/lock_impl.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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_SYNCHRONIZATION_LOCK_H_ 5 #ifndef BASE_SYNCHRONIZATION_LOCK_H_
6 #define BASE_SYNCHRONIZATION_LOCK_H_ 6 #define BASE_SYNCHRONIZATION_LOCK_H_
7 7
8 #include "base/base_export.h" 8 #include "base/base_export.h"
9 #include "base/logging.h" 9 #include "base/logging.h"
10 #include "base/macros.h"
10 #include "base/synchronization/lock_impl.h" 11 #include "base/synchronization/lock_impl.h"
11 #include "base/threading/platform_thread.h" 12 #include "base/threading/platform_thread.h"
13 #include "build/build_config.h"
12 14
13 namespace base { 15 namespace base {
14 16
15 // A convenient wrapper for an OS specific critical section. The only real 17 // A convenient wrapper for an OS specific critical section. The only real
16 // intelligence in this class is in debug mode for the support for the 18 // intelligence in this class is in debug mode for the support for the
17 // AssertAcquired() method. 19 // AssertAcquired() method.
18 class BASE_EXPORT Lock { 20 class BASE_EXPORT Lock {
19 public: 21 public:
20 #if !DCHECK_IS_ON() 22 #if !DCHECK_IS_ON()
21 // Optimized wrapper implementation 23 // Optimized wrapper implementation
(...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after
129 } 131 }
130 132
131 private: 133 private:
132 Lock& lock_; 134 Lock& lock_;
133 DISALLOW_COPY_AND_ASSIGN(AutoUnlock); 135 DISALLOW_COPY_AND_ASSIGN(AutoUnlock);
134 }; 136 };
135 137
136 } // namespace base 138 } // namespace base
137 139
138 #endif // BASE_SYNCHRONIZATION_LOCK_H_ 140 #endif // BASE_SYNCHRONIZATION_LOCK_H_
OLDNEW
« no previous file with comments | « base/synchronization/condition_variable_win.cc ('k') | base/synchronization/lock_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698