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

Side by Side Diff: base/synchronization/waitable_event_win.cc

Issue 18119002: Use a direct include of time headers in base/, part 2. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: win fix Created 7 years, 5 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 | Annotate | Revision Log
« no previous file with comments | « base/synchronization/waitable_event_unittest.cc ('k') | base/sys_info.cc » ('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 #include "base/synchronization/waitable_event.h" 5 #include "base/synchronization/waitable_event.h"
6 6
7 #include <math.h> 7 #include <math.h>
8 #include <windows.h> 8 #include <windows.h>
9 9
10 #include "base/logging.h" 10 #include "base/logging.h"
11 #include "base/threading/thread_restrictions.h" 11 #include "base/threading/thread_restrictions.h"
12 #include "base/time.h" 12 #include "base/time/time.h"
13 13
14 namespace base { 14 namespace base {
15 15
16 WaitableEvent::WaitableEvent(bool manual_reset, bool signaled) 16 WaitableEvent::WaitableEvent(bool manual_reset, bool signaled)
17 : handle_(CreateEvent(NULL, manual_reset, signaled, NULL)) { 17 : handle_(CreateEvent(NULL, manual_reset, signaled, NULL)) {
18 // We're probably going to crash anyways if this is ever NULL, so we might as 18 // We're probably going to crash anyways if this is ever NULL, so we might as
19 // well make our stack reports more informative by crashing here. 19 // well make our stack reports more informative by crashing here.
20 CHECK(handle_); 20 CHECK(handle_);
21 } 21 }
22 22
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after
93 INFINITE); // no timeout 93 INFINITE); // no timeout
94 if (result >= WAIT_OBJECT_0 + count) { 94 if (result >= WAIT_OBJECT_0 + count) {
95 DLOG_GETLASTERROR(FATAL) << "WaitForMultipleObjects failed"; 95 DLOG_GETLASTERROR(FATAL) << "WaitForMultipleObjects failed";
96 return 0; 96 return 0;
97 } 97 }
98 98
99 return result - WAIT_OBJECT_0; 99 return result - WAIT_OBJECT_0;
100 } 100 }
101 101
102 } // namespace base 102 } // namespace base
OLDNEW
« no previous file with comments | « base/synchronization/waitable_event_unittest.cc ('k') | base/sys_info.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698