| 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" | 5 #include "mojo/public/cpp/bindings/callback.h" |
| 6 #include "mojo/public/cpp/bindings/map.h" | 6 #include "mojo/public/cpp/bindings/map.h" |
| 7 #include "mojo/public/cpp/bindings/string.h" | 7 #include "mojo/public/cpp/bindings/string.h" |
| 8 #include "testing/gtest/include/gtest/gtest.h" | 8 #include "testing/gtest/include/gtest/gtest.h" |
| 9 | 9 |
| 10 namespace mojo { | 10 namespace mojo { |
| (...skipping 176 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 |