OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 <string> | 5 #include <string> |
6 | 6 |
7 #include "mojo/public/cpp/environment/default_async_waiter.h" | 7 #include "mojo/public/cpp/environment/default_async_waiter.h" |
8 #include "mojo/public/cpp/environment/environment.h" | 8 #include "mojo/public/cpp/environment/environment.h" |
9 #include "mojo/public/cpp/system/core.h" | 9 #include "mojo/public/cpp/system/core.h" |
10 #include "mojo/public/cpp/system/macros.h" | 10 #include "mojo/public/cpp/system/macros.h" |
| 11 #include "mojo/public/cpp/test_support/test_utils.h" |
11 #include "mojo/public/cpp/utility/run_loop.h" | 12 #include "mojo/public/cpp/utility/run_loop.h" |
12 #include "mojo/public/tests/test_utils.h" | |
13 #include "testing/gtest/include/gtest/gtest.h" | 13 #include "testing/gtest/include/gtest/gtest.h" |
14 | 14 |
15 namespace mojo { | 15 namespace mojo { |
16 namespace { | 16 namespace { |
17 | 17 |
18 class TestAsyncWaitCallback { | 18 class TestAsyncWaitCallback { |
19 public: | 19 public: |
20 TestAsyncWaitCallback() : result_count_(0), last_result_(MOJO_RESULT_OK) { | 20 TestAsyncWaitCallback() : result_count_(0), last_result_(MOJO_RESULT_OK) { |
21 } | 21 } |
22 virtual ~TestAsyncWaitCallback() {} | 22 virtual ~TestAsyncWaitCallback() {} |
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
109 CallCancelWait( | 109 CallCancelWait( |
110 CallAsyncWait(test_pipe.handle0.get(), | 110 CallAsyncWait(test_pipe.handle0.get(), |
111 MOJO_WAIT_FLAG_READABLE, | 111 MOJO_WAIT_FLAG_READABLE, |
112 &callback)); | 112 &callback)); |
113 RunLoop::current()->Run(); | 113 RunLoop::current()->Run(); |
114 EXPECT_EQ(0, callback.result_count()); | 114 EXPECT_EQ(0, callback.result_count()); |
115 } | 115 } |
116 | 116 |
117 } // namespace | 117 } // namespace |
118 } // namespace mojo | 118 } // namespace mojo |
OLD | NEW |