OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 "base/message_loop/message_loop.h" | 5 #include "base/message_loop/message_loop.h" |
6 #include "mojo/message_pump/message_pump_mojo.h" | 6 #include "mojo/message_pump/message_pump_mojo.h" |
| 7 #include "mojo/public/cpp/bindings/binding.h" |
| 8 #include "mojo/public/cpp/bindings/strong_binding.h" |
| 9 #include "mojo/public/interfaces/bindings/tests/math_calculator.mojom.h" |
| 10 #include "mojo/public/interfaces/bindings/tests/sample_interfaces.mojom.h" |
| 11 #include "mojo/public/interfaces/bindings/tests/sample_service.mojom.h" |
| 12 #include "mojo/public/interfaces/bindings/tests/scoping.mojom.h" |
7 #include "testing/gtest/include/gtest/gtest.h" | 13 #include "testing/gtest/include/gtest/gtest.h" |
8 #include "third_party/mojo/src/mojo/public/cpp/bindings/binding.h" | |
9 #include "third_party/mojo/src/mojo/public/cpp/bindings/strong_binding.h" | |
10 #include "third_party/mojo/src/mojo/public/interfaces/bindings/tests/math_calcul
ator.mojom.h" | |
11 #include "third_party/mojo/src/mojo/public/interfaces/bindings/tests/sample_inte
rfaces.mojom.h" | |
12 #include "third_party/mojo/src/mojo/public/interfaces/bindings/tests/sample_serv
ice.mojom.h" | |
13 #include "third_party/mojo/src/mojo/public/interfaces/bindings/tests/scoping.moj
om.h" | |
14 | 14 |
15 namespace mojo { | 15 namespace mojo { |
16 namespace test { | 16 namespace test { |
17 namespace { | 17 namespace { |
18 | 18 |
19 template <typename Method, typename Class> | 19 template <typename Method, typename Class> |
20 class RunnableImpl { | 20 class RunnableImpl { |
21 public: | 21 public: |
22 RunnableImpl(Method method, Class instance) | 22 RunnableImpl(Method method, Class instance) |
23 : method_(method), instance_(instance) {} | 23 : method_(method), instance_(instance) {} |
(...skipping 614 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
638 // While B & C have fallen out of scope, the pipes will remain until they are | 638 // While B & C have fallen out of scope, the pipes will remain until they are |
639 // flushed. | 639 // flushed. |
640 EXPECT_FALSE(a_impl.d_called()); | 640 EXPECT_FALSE(a_impl.d_called()); |
641 PumpMessages(); | 641 PumpMessages(); |
642 EXPECT_TRUE(a_impl.d_called()); | 642 EXPECT_TRUE(a_impl.d_called()); |
643 } | 643 } |
644 | 644 |
645 } // namespace | 645 } // namespace |
646 } // namespace test | 646 } // namespace test |
647 } // namespace mojo | 647 } // namespace mojo |
OLD | NEW |