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

Side by Side Diff: mojo/public/environment/tests/async_waiter_unittest.cc

Issue 213393002: Mojo: Move public C system header files to mojo/public/c/system/. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebased Created 6 years, 9 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 | « mojo/public/environment/environment.h ('k') | mojo/public/gles2/gles2.h » ('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 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 "mojo/public/environment/default_async_waiter.h"
6
7 #include <string> 5 #include <string>
8 6
7 #include "mojo/public/c/system/macros.h"
8 #include "mojo/public/environment/default_async_waiter.h"
9 #include "mojo/public/environment/environment.h" 9 #include "mojo/public/environment/environment.h"
10 #include "mojo/public/system/core_cpp.h" 10 #include "mojo/public/system/core_cpp.h"
11 #include "mojo/public/system/macros.h"
12 #include "mojo/public/tests/test_utils.h" 11 #include "mojo/public/tests/test_utils.h"
13 #include "mojo/public/utility/run_loop.h" 12 #include "mojo/public/utility/run_loop.h"
14 #include "testing/gtest/include/gtest/gtest.h" 13 #include "testing/gtest/include/gtest/gtest.h"
15 14
16 namespace mojo { 15 namespace mojo {
17 namespace { 16 namespace {
18 17
19 class TestAsyncWaitCallback { 18 class TestAsyncWaitCallback {
20 public: 19 public:
21 TestAsyncWaitCallback() : result_count_(0), last_result_(MOJO_RESULT_OK) { 20 TestAsyncWaitCallback() : result_count_(0), last_result_(MOJO_RESULT_OK) {
(...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after
110 CallCancelWait( 109 CallCancelWait(
111 CallAsyncWait(test_pipe.handle0.get(), 110 CallAsyncWait(test_pipe.handle0.get(),
112 MOJO_WAIT_FLAG_READABLE, 111 MOJO_WAIT_FLAG_READABLE,
113 &callback)); 112 &callback));
114 RunLoop::current()->Run(); 113 RunLoop::current()->Run();
115 EXPECT_EQ(0, callback.result_count()); 114 EXPECT_EQ(0, callback.result_count());
116 } 115 }
117 116
118 } // namespace 117 } // namespace
119 } // namespace mojo 118 } // namespace mojo
OLDNEW
« no previous file with comments | « mojo/public/environment/environment.h ('k') | mojo/public/gles2/gles2.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698