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

Unified Diff: base/synchronization/lock_impl.h

Issue 8953003: Condition variable implementation for vista, win7 (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 9 years 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « base/synchronization/lock.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/synchronization/lock_impl.h
===================================================================
--- base/synchronization/lock_impl.h (revision 113515)
+++ base/synchronization/lock_impl.h (working copy)
@@ -45,12 +45,10 @@
// a successful call to Try, or a call to Lock.
void Unlock();
- // Return the native underlying lock. Not supported for Windows builds.
+ // Return the native underlying lock.
// TODO(awalker): refactor lock and condition variables so that this is
// unnecessary.
-#if !defined(OS_WIN)
OSLockType* os_lock() { return &os_lock_; }
-#endif
private:
OSLockType os_lock_;
« no previous file with comments | « base/synchronization/lock.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698