| 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 "chromeos/pairing/fake_controller_pairing_controller.h" | 5 #include "components/pairing/fake_controller_pairing_controller.h" |
| 6 | 6 |
| 7 #include <map> | 7 #include <map> |
| 8 | 8 |
| 9 #include "base/bind.h" | 9 #include "base/bind.h" |
| 10 #include "base/logging.h" | 10 #include "base/logging.h" |
| 11 #include "base/message_loop/message_loop.h" | 11 #include "base/message_loop/message_loop.h" |
| 12 #include "base/rand_util.h" | 12 #include "base/rand_util.h" |
| 13 #include "base/strings/string_number_conversions.h" | 13 #include "base/strings/string_number_conversions.h" |
| 14 #include "base/strings/string_split.h" | 14 #include "base/strings/string_split.h" |
| 15 #include "base/strings/string_util.h" | 15 #include "base/strings/string_util.h" |
| (...skipping 310 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 326 next_stage = STAGE_HOST_CONNECTION_LOST; | 326 next_stage = STAGE_HOST_CONNECTION_LOST; |
| 327 } | 327 } |
| 328 if (next_stage != STAGE_NONE) | 328 if (next_stage != STAGE_NONE) |
| 329 ChangeStageLater(next_stage); | 329 ChangeStageLater(next_stage); |
| 330 } | 330 } |
| 331 | 331 |
| 332 void FakeControllerPairingController::DiscoveredDevicesListChanged() { | 332 void FakeControllerPairingController::DiscoveredDevicesListChanged() { |
| 333 } | 333 } |
| 334 | 334 |
| 335 } // namespace chromeos | 335 } // namespace chromeos |
| OLD | NEW |