OLD | NEW |
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/public/cpp/bindings/callback.h" |
| 6 #include "mojo/public/cpp/bindings/map.h" |
| 7 #include "mojo/public/cpp/bindings/string.h" |
5 #include "testing/gtest/include/gtest/gtest.h" | 8 #include "testing/gtest/include/gtest/gtest.h" |
6 #include "third_party/mojo/src/mojo/public/cpp/bindings/callback.h" | |
7 #include "third_party/mojo/src/mojo/public/cpp/bindings/map.h" | |
8 #include "third_party/mojo/src/mojo/public/cpp/bindings/string.h" | |
9 | 9 |
10 namespace mojo { | 10 namespace mojo { |
11 namespace test { | 11 namespace test { |
12 namespace { | 12 namespace { |
13 | 13 |
14 struct RunnableNoArgs { | 14 struct RunnableNoArgs { |
15 explicit RunnableNoArgs(int* calls) : calls(calls) {} | 15 explicit RunnableNoArgs(int* calls) : calls(calls) {} |
16 | 16 |
17 void Run() const { (*calls)++; } | 17 void Run() const { (*calls)++; } |
18 int* calls; | 18 int* calls; |
(...skipping 168 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
187 g_overloaded_function_with_double_param_called = false; | 187 g_overloaded_function_with_double_param_called = false; |
188 mojo::Callback<void(double)> cb_with_double_param = &OverloadedFunction; | 188 mojo::Callback<void(double)> cb_with_double_param = &OverloadedFunction; |
189 cb_with_double_param.Run(123); | 189 cb_with_double_param.Run(123); |
190 EXPECT_TRUE(g_overloaded_function_with_double_param_called); | 190 EXPECT_TRUE(g_overloaded_function_with_double_param_called); |
191 g_overloaded_function_with_double_param_called = false; | 191 g_overloaded_function_with_double_param_called = false; |
192 } | 192 } |
193 | 193 |
194 } // namespace | 194 } // namespace |
195 } // namespace test | 195 } // namespace test |
196 } // namespace mojo | 196 } // namespace mojo |
OLD | NEW |