Index: base/waitable_event.h |
=================================================================== |
--- base/waitable_event.h (revision 3954) |
+++ base/waitable_event.h (working copy) |
@@ -14,10 +14,10 @@ |
#include "base/lock.h" |
#endif |
-class TimeDelta; |
- |
namespace base { |
+class TimeDelta; |
+ |
// A WaitableEvent can be a useful thread synchronization tool when you want to |
// allow one thread to wait for another thread to finish some work. |
// |
@@ -62,7 +62,7 @@ |
// Wait up until max_time has passed for the event to be signaled. Returns |
// true if the event was signaled. If this method returns false, then it |
// does not necessarily mean that max_time was exceeded. |
- bool TimedWait(const TimeDelta& max_time); |
+ bool TimedWait(const base::TimeDelta& max_time); |
brettw
2008/10/24 23:47:52
You don't need this one either.
|
private: |
#if defined(OS_WIN) |
@@ -80,4 +80,3 @@ |
} // namespace base |
#endif // BASE_WAITABLE_EVENT_H_ |
- |