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

Side by Side Diff: mojo/edk/system/waiter.cc

Issue 1543603002: Switch to standard integer types in mojo/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix 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
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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 "mojo/edk/system/waiter.h" 5 #include "mojo/edk/system/waiter.h"
6 6
7 #include <stdint.h>
8
7 #include <limits> 9 #include <limits>
8 10
9 #include "base/logging.h" 11 #include "base/logging.h"
10 #include "base/time/time.h" 12 #include "base/time/time.h"
11 13
12 namespace mojo { 14 namespace mojo {
13 namespace edk { 15 namespace edk {
14 16
15 Waiter::Waiter() 17 Waiter::Waiter()
16 : cv_(&lock_), 18 : cv_(&lock_),
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after
91 awoken_ = true; 93 awoken_ = true;
92 awake_result_ = result; 94 awake_result_ = result;
93 awake_context_ = context; 95 awake_context_ = context;
94 cv_.Signal(); 96 cv_.Signal();
95 // |cv_.Wait()|/|cv_.TimedWait()| will return after |lock_| is released. 97 // |cv_.Wait()|/|cv_.TimedWait()| will return after |lock_| is released.
96 return true; 98 return true;
97 } 99 }
98 100
99 } // namespace edk 101 } // namespace edk
100 } // namespace mojo 102 } // namespace mojo
OLDNEW
« no previous file with comments | « mojo/edk/system/wait_set_dispatcher_unittest.cc ('k') | mojo/edk/test/multiprocess_test_helper_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698