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

Side by Side Diff: mojo/public/bindings/tests/request_response_unittest.cc

Issue 218833003: Mojo: Move public/tests/test_{support,utils}.* to public/{c,cpp}/test_support. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix gyp Created 6 years, 8 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/bindings/tests/handle_passing_unittest.cc ('k') | mojo/public/c/DEPS » ('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/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
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
OLDNEW
« no previous file with comments | « mojo/public/bindings/tests/handle_passing_unittest.cc ('k') | mojo/public/c/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698