| 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 #ifndef COMPONENTS_PAIRING_FAKE_CONTROLLER_PAIRING_CONTROLLER_H_ | 5 #ifndef COMPONENTS_PAIRING_FAKE_CONTROLLER_PAIRING_CONTROLLER_H_ |
| 6 #define COMPONENTS_PAIRING_FAKE_CONTROLLER_PAIRING_CONTROLLER_H_ | 6 #define COMPONENTS_PAIRING_FAKE_CONTROLLER_PAIRING_CONTROLLER_H_ |
| 7 | 7 |
| 8 #include <stddef.h> |
| 9 |
| 8 #include <set> | 10 #include <set> |
| 9 #include <utility> | 11 #include <utility> |
| 10 | 12 |
| 11 #include "base/macros.h" | 13 #include "base/macros.h" |
| 12 #include "base/observer_list.h" | 14 #include "base/observer_list.h" |
| 13 #include "base/time/time.h" | 15 #include "base/time/time.h" |
| 14 #include "components/pairing/controller_pairing_controller.h" | 16 #include "components/pairing/controller_pairing_controller.h" |
| 15 | 17 |
| 16 namespace pairing_chromeos { | 18 namespace pairing_chromeos { |
| 17 | 19 |
| (...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 106 Stage connection_lost_begin_; | 108 Stage connection_lost_begin_; |
| 107 Stage connection_lost_end_; | 109 Stage connection_lost_end_; |
| 108 bool enrollment_should_fail_; | 110 bool enrollment_should_fail_; |
| 109 | 111 |
| 110 DISALLOW_COPY_AND_ASSIGN(FakeControllerPairingController); | 112 DISALLOW_COPY_AND_ASSIGN(FakeControllerPairingController); |
| 111 }; | 113 }; |
| 112 | 114 |
| 113 } // namespace pairing_chromeos | 115 } // namespace pairing_chromeos |
| 114 | 116 |
| 115 #endif // COMPONENTS_PAIRING_FAKE_CONTROLLER_PAIRING_CONTROLLER_H_ | 117 #endif // COMPONENTS_PAIRING_FAKE_CONTROLLER_PAIRING_CONTROLLER_H_ |
| OLD | NEW |