| Index: components/proximity_auth/webui/proximity_auth_webui_handler.h
|
| diff --git a/components/proximity_auth/webui/proximity_auth_webui_handler.h b/components/proximity_auth/webui/proximity_auth_webui_handler.h
|
| index 0f97a5132ae379bd8846e2ebda1a9571626dc7ae..3a05795dbf4af138e65c12dc9cf325e48659e709 100644
|
| --- a/components/proximity_auth/webui/proximity_auth_webui_handler.h
|
| +++ b/components/proximity_auth/webui/proximity_auth_webui_handler.h
|
| @@ -99,7 +99,8 @@ class ProximityAuthWebUIHandler
|
| const std::vector<cryptauth::ExternalDeviceInfo>& reachable_phones);
|
|
|
| // Called when the RemoteDevice is loaded so we can create a connection.
|
| - void OnRemoteDevicesLoaded(const std::vector<RemoteDevice>& remote_devices);
|
| + void OnRemoteDevicesLoaded(
|
| + const std::vector<cryptauth::RemoteDevice>& remote_devices);
|
|
|
| // Converts an ExternalDeviceInfo proto to a JSON dictionary used in
|
| // JavaScript.
|
| @@ -148,7 +149,7 @@ class ProximityAuthWebUIHandler
|
| // Member variables for connecting to and authenticating the remote device.
|
| // TODO(tengs): Support multiple simultaenous connections.
|
| std::unique_ptr<RemoteDeviceLoader> remote_device_loader_;
|
| - RemoteDevice selected_remote_device_;
|
| + cryptauth::RemoteDevice selected_remote_device_;
|
| std::unique_ptr<RemoteDeviceLifeCycle> life_cycle_;
|
| std::unique_ptr<RemoteStatusUpdate> last_remote_status_update_;
|
|
|
|
|