| 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 CHROME_BROWSER_UI_WEBUI_CHROMEOS_LOGIN_HID_DETECTION_SCREEN_HANDLER_H_ | 5 #ifndef CHROME_BROWSER_UI_WEBUI_CHROMEOS_LOGIN_HID_DETECTION_SCREEN_HANDLER_H_ |
| 6 #define CHROME_BROWSER_UI_WEBUI_CHROMEOS_LOGIN_HID_DETECTION_SCREEN_HANDLER_H_ | 6 #define CHROME_BROWSER_UI_WEBUI_CHROMEOS_LOGIN_HID_DETECTION_SCREEN_HANDLER_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 43 ~HIDDetectionScreenHandler() override; | 43 ~HIDDetectionScreenHandler() override; |
| 44 | 44 |
| 45 // HIDDetectionScreenActor implementation: | 45 // HIDDetectionScreenActor implementation: |
| 46 void Show() override; | 46 void Show() override; |
| 47 void Hide() override; | 47 void Hide() override; |
| 48 void SetDelegate(Delegate* delegate) override; | 48 void SetDelegate(Delegate* delegate) override; |
| 49 void CheckIsScreenRequired( | 49 void CheckIsScreenRequired( |
| 50 const base::Callback<void(bool)>& on_check_done) override; | 50 const base::Callback<void(bool)>& on_check_done) override; |
| 51 | 51 |
| 52 // BaseScreenHandler implementation: | 52 // BaseScreenHandler implementation: |
| 53 void DeclareLocalizedValues(LocalizedValuesBuilder* builder) override; | 53 void DeclareLocalizedValues( |
| 54 ::login::LocalizedValuesBuilder* builder) override; |
| 54 void Initialize() override; | 55 void Initialize() override; |
| 55 | 56 |
| 56 // WebUIMessageHandler implementation: | 57 // WebUIMessageHandler implementation: |
| 57 void RegisterMessages() override; | 58 void RegisterMessages() override; |
| 58 | 59 |
| 59 // device::BluetoothDevice::PairingDelegate implementation: | 60 // device::BluetoothDevice::PairingDelegate implementation: |
| 60 void RequestPinCode(device::BluetoothDevice* device) override; | 61 void RequestPinCode(device::BluetoothDevice* device) override; |
| 61 void RequestPasskey(device::BluetoothDevice* device) override; | 62 void RequestPasskey(device::BluetoothDevice* device) override; |
| 62 void DisplayPinCode(device::BluetoothDevice* device, | 63 void DisplayPinCode(device::BluetoothDevice* device, |
| 63 const std::string& pincode) override; | 64 const std::string& pincode) override; |
| (...skipping 152 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 216 | 217 |
| 217 base::WeakPtrFactory<HIDDetectionScreenHandler> weak_ptr_factory_; | 218 base::WeakPtrFactory<HIDDetectionScreenHandler> weak_ptr_factory_; |
| 218 | 219 |
| 219 DISALLOW_COPY_AND_ASSIGN(HIDDetectionScreenHandler); | 220 DISALLOW_COPY_AND_ASSIGN(HIDDetectionScreenHandler); |
| 220 }; | 221 }; |
| 221 | 222 |
| 222 } // namespace chromeos | 223 } // namespace chromeos |
| 223 | 224 |
| 224 #endif // CHROME_BROWSER_UI_WEBUI_CHROMEOS_LOGIN_HID_DETECTION_SCREEN_HANDLER_H
_ | 225 #endif // CHROME_BROWSER_UI_WEBUI_CHROMEOS_LOGIN_HID_DETECTION_SCREEN_HANDLER_H
_ |
| 225 | 226 |
| OLD | NEW |