| Index: remoting/ios/facade/host_info.cc
|
| diff --git a/remoting/ios/facade/host_info.cc b/remoting/ios/facade/host_info.cc
|
| index 6e14be4354ea58949b32cd6d9ccf1e466e764a1e..939fc504e66db2f2784ce337730a1b547d827da8 100644
|
| --- a/remoting/ios/facade/host_info.cc
|
| +++ b/remoting/ios/facade/host_info.cc
|
| @@ -51,6 +51,21 @@ bool HostInfo::ParseHostInfo(const base::DictionaryValue& host_info) {
|
| return false;
|
| }
|
|
|
| + if (!host_info.GetString("hostOS", &host_os)) {
|
| + LOG(ERROR) << "hostOS was not found in host_info";
|
| + return false;
|
| + }
|
| +
|
| + if (!host_info.GetString("hostOsVersion", &host_os_version)) {
|
| + LOG(ERROR) << "hostOsVersion was not found in host_info";
|
| + return false;
|
| + }
|
| +
|
| + if (!host_info.GetString("hostVersion", &host_version)) {
|
| + LOG(ERROR) << "hostVersion was not found in host_info";
|
| + return false;
|
| + }
|
| +
|
| if (!host_info.GetString("publicKey", &public_key)) {
|
| LOG(ERROR) << "publicKey was not found for " << host_name;
|
| return false;
|
|
|