| OLD | NEW |
| 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 "base/bind.h" | 5 #include "base/bind.h" |
| 6 #include "base/memory/ref_counted.h" | 6 #include "base/memory/ref_counted.h" |
| 7 #include "base/message_loop/message_loop.h" | 7 #include "base/message_loop/message_loop.h" |
| 8 #include "chromeos/dbus/dbus_thread_manager.h" | 8 #include "chromeos/dbus/dbus_thread_manager.h" |
| 9 #include "chromeos/dbus/fake_bluetooth_adapter_client.h" | 9 #include "chromeos/dbus/fake_bluetooth_adapter_client.h" |
| 10 #include "chromeos/dbus/fake_bluetooth_agent_manager_client.h" | 10 #include "chromeos/dbus/fake_bluetooth_agent_manager_client.h" |
| (...skipping 609 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 620 | 620 |
| 621 server_socket = NULL; | 621 server_socket = NULL; |
| 622 | 622 |
| 623 message_loop_.RunUntilIdle(); | 623 message_loop_.RunUntilIdle(); |
| 624 | 624 |
| 625 EXPECT_EQ(2U, success_callback_count_); | 625 EXPECT_EQ(2U, success_callback_count_); |
| 626 EXPECT_EQ(2U, error_callback_count_); | 626 EXPECT_EQ(2U, error_callback_count_); |
| 627 } | 627 } |
| 628 | 628 |
| 629 } // namespace chromeos | 629 } // namespace chromeos |
| 630 |
| OLD | NEW |