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

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

Issue 1408003013: Reland "EDK: Move //mojo/edk/system/waitable_event* to edk/util." (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 5 years, 1 month 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
« no previous file with comments | « mojo/edk/system/test_channel_endpoint_client.h ('k') | mojo/edk/system/waitable_event.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 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 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/test_channel_endpoint_client.h" 5 #include "mojo/edk/system/test_channel_endpoint_client.h"
6 6
7 #include <utility> 7 #include <utility>
8 8
9 #include "mojo/edk/system/message_in_transit.h" 9 #include "mojo/edk/system/message_in_transit.h"
10 #include "mojo/edk/system/waitable_event.h" 10 #include "mojo/edk/util/waitable_event.h"
11 #include "testing/gtest/include/gtest/gtest.h" 11 #include "testing/gtest/include/gtest/gtest.h"
12 12
13 using mojo::util::ManualResetWaitableEvent;
13 using mojo::util::MutexLocker; 14 using mojo::util::MutexLocker;
14 using mojo::util::RefPtr; 15 using mojo::util::RefPtr;
15 16
16 namespace mojo { 17 namespace mojo {
17 namespace system { 18 namespace system {
18 namespace test { 19 namespace test {
19 20
20 void TestChannelEndpointClient::Init(unsigned port, 21 void TestChannelEndpointClient::Init(unsigned port,
21 RefPtr<ChannelEndpoint>&& endpoint) { 22 RefPtr<ChannelEndpoint>&& endpoint) {
22 MutexLocker locker(&mutex_); 23 MutexLocker locker(&mutex_);
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
75 TestChannelEndpointClient::TestChannelEndpointClient() 76 TestChannelEndpointClient::TestChannelEndpointClient()
76 : port_(0), read_event_(nullptr) {} 77 : port_(0), read_event_(nullptr) {}
77 78
78 TestChannelEndpointClient::~TestChannelEndpointClient() { 79 TestChannelEndpointClient::~TestChannelEndpointClient() {
79 EXPECT_FALSE(endpoint_); 80 EXPECT_FALSE(endpoint_);
80 } 81 }
81 82
82 } // namespace test 83 } // namespace test
83 } // namespace system 84 } // namespace system
84 } // namespace mojo 85 } // namespace mojo
OLDNEW
« no previous file with comments | « mojo/edk/system/test_channel_endpoint_client.h ('k') | mojo/edk/system/waitable_event.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698