| 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 "base/bind.h" | 5 #include "base/bind.h" |
| 6 #include "base/callback.h" | 6 #include "base/callback.h" |
| 7 #include "base/logging.h" | 7 #include "base/logging.h" |
| 8 #include "base/memory/ptr_util.h" |
| 8 #include "base/message_loop/message_loop.h" | 9 #include "base/message_loop/message_loop.h" |
| 9 #include "base/run_loop.h" | 10 #include "base/run_loop.h" |
| 10 #include "mojo/public/cpp/bindings/binding_set.h" | 11 #include "mojo/public/cpp/bindings/binding_set.h" |
| 11 #include "mojo/public/cpp/bindings/interface_request.h" | 12 #include "mojo/public/cpp/bindings/interface_request.h" |
| 12 #include "mojo/public/cpp/bindings/tests/rect_blink.h" | 13 #include "mojo/public/cpp/bindings/tests/rect_blink.h" |
| 13 #include "mojo/public/cpp/bindings/tests/rect_chromium.h" | 14 #include "mojo/public/cpp/bindings/tests/rect_chromium.h" |
| 14 #include "mojo/public/cpp/bindings/tests/struct_with_traits_impl.h" | 15 #include "mojo/public/cpp/bindings/tests/struct_with_traits_impl.h" |
| 15 #include "mojo/public/cpp/bindings/tests/struct_with_traits_impl_traits.h" | 16 #include "mojo/public/cpp/bindings/tests/struct_with_traits_impl_traits.h" |
| 16 #include "mojo/public/cpp/bindings/tests/variant_test_util.h" | 17 #include "mojo/public/cpp/bindings/tests/variant_test_util.h" |
| 17 #include "mojo/public/interfaces/bindings/tests/struct_with_traits.mojom.h" | 18 #include "mojo/public/interfaces/bindings/tests/struct_with_traits.mojom.h" |
| (...skipping 525 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 543 quit_closure.Run(); | 544 quit_closure.Run(); |
| 544 | 545 |
| 545 }, | 546 }, |
| 546 loop.QuitClosure())); | 547 loop.QuitClosure())); |
| 547 loop.Run(); | 548 loop.Run(); |
| 548 } | 549 } |
| 549 } | 550 } |
| 550 | 551 |
| 551 } // namespace test | 552 } // namespace test |
| 552 } // namespace mojo | 553 } // namespace mojo |
| OLD | NEW |