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

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

Issue 644963004: Some more virtual/override updates. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 6 years, 2 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 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/c/environment/async_waiter.h" 7 #include "mojo/public/c/environment/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/test_support/test_utils.h"
12 #include "mojo/public/cpp/utility/run_loop.h" 12 #include "mojo/public/cpp/utility/run_loop.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 virtual ~TestAsyncWaitCallback() {} 21 ~TestAsyncWaitCallback() {}
22 22
23 int result_count() const { return result_count_; } 23 int result_count() const { return result_count_; }
24 24
25 MojoResult last_result() const { return last_result_; } 25 MojoResult last_result() const { return last_result_; }
26 26
27 // MojoAsyncWaitCallback: 27 // MojoAsyncWaitCallback:
28 static void OnHandleReady(void* closure, MojoResult result) { 28 static void OnHandleReady(void* closure, MojoResult result) {
29 TestAsyncWaitCallback* self = static_cast<TestAsyncWaitCallback*>(closure); 29 TestAsyncWaitCallback* self = static_cast<TestAsyncWaitCallback*>(closure);
30 self->result_count_++; 30 self->result_count_++;
31 self->last_result_ = result; 31 self->last_result_ = result;
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after
105 EXPECT_TRUE(test::WriteTextMessage(test_pipe.handle1.get(), std::string())); 105 EXPECT_TRUE(test::WriteTextMessage(test_pipe.handle1.get(), std::string()));
106 106
107 CallCancelWait(CallAsyncWait( 107 CallCancelWait(CallAsyncWait(
108 test_pipe.handle0.get(), MOJO_HANDLE_SIGNAL_READABLE, &callback)); 108 test_pipe.handle0.get(), MOJO_HANDLE_SIGNAL_READABLE, &callback));
109 RunLoop::current()->Run(); 109 RunLoop::current()->Run();
110 EXPECT_EQ(0, callback.result_count()); 110 EXPECT_EQ(0, callback.result_count());
111 } 111 }
112 112
113 } // namespace 113 } // namespace
114 } // namespace mojo 114 } // namespace mojo
OLDNEW
« no previous file with comments | « mojo/public/cpp/bindings/tests/validation_unittest.cc ('k') | mojo/public/cpp/environment/tests/logging_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698