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 "mojo/public/bindings/allocation_scope.h" | 5 #include "mojo/public/bindings/allocation_scope.h" |
6 #include "mojo/public/bindings/remote_ptr.h" | 6 #include "mojo/public/bindings/remote_ptr.h" |
7 #include "mojo/public/bindings/tests/sample_import.mojom.h" | 7 #include "mojo/public/bindings/tests/sample_import.mojom.h" |
8 #include "mojo/public/bindings/tests/sample_interfaces.mojom.h" | 8 #include "mojo/public/bindings/tests/sample_interfaces.mojom.h" |
9 #include "mojo/public/cpp/environment/environment.h" | 9 #include "mojo/public/cpp/environment/environment.h" |
| 10 #include "mojo/public/cpp/test_support/test_utils.h" |
10 #include "mojo/public/cpp/utility/run_loop.h" | 11 #include "mojo/public/cpp/utility/run_loop.h" |
11 #include "mojo/public/tests/test_utils.h" | |
12 #include "testing/gtest/include/gtest/gtest.h" | 12 #include "testing/gtest/include/gtest/gtest.h" |
13 | 13 |
14 namespace mojo { | 14 namespace mojo { |
15 namespace test { | 15 namespace test { |
16 namespace { | 16 namespace { |
17 | 17 |
18 class ProviderImpl : public sample::Provider { | 18 class ProviderImpl : public sample::Provider { |
19 public: | 19 public: |
20 explicit ProviderImpl(sample::ScopedProviderClientHandle handle) | 20 explicit ProviderImpl(sample::ScopedProviderClientHandle handle) |
21 : client_(handle.Pass(), this) { | 21 : client_(handle.Pass(), this) { |
(...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
131 | 131 |
132 std::string value; | 132 std::string value; |
133 ReadTextMessage(pipe2.handle0.get(), &value); | 133 ReadTextMessage(pipe2.handle0.get(), &value); |
134 | 134 |
135 EXPECT_EQ(std::string("hello"), value); | 135 EXPECT_EQ(std::string("hello"), value); |
136 } | 136 } |
137 | 137 |
138 } // namespace | 138 } // namespace |
139 } // namespace test | 139 } // namespace test |
140 } // namespace mojo | 140 } // namespace mojo |
OLD | NEW |