Commit fcb71102 authored by Claude van der Merwe's avatar Claude van der Merwe Committed by Commit Bot

Fix Phonehub feature_type typo

kPhoneHubClientEnabled was inserted instead of kPhoneHubHostSupported.

Bug: 1106937
Change-Id: I1a31c7904c0aae335e84289ed217d9495055c351
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2363250
Commit-Queue: Claude van der Merwe <cvandermerwe@google.com>
Reviewed-by: default avatarKyle Horimoto <khorimoto@chromium.org>
Cr-Commit-Position: refs/heads/master@{#799132}
parent 09c50c62
...@@ -67,8 +67,8 @@ const base::flat_set<CryptAuthFeatureType>& GetAllCryptAuthFeatureTypes() { ...@@ -67,8 +67,8 @@ const base::flat_set<CryptAuthFeatureType>& GetAllCryptAuthFeatureTypes() {
if (features::IsPhoneHubEnabled()) { if (features::IsPhoneHubEnabled()) {
feature_set.insert(CryptAuthFeatureType::kPhoneHubClientSupported); feature_set.insert(CryptAuthFeatureType::kPhoneHubClientSupported);
feature_set.insert(CryptAuthFeatureType::kPhoneHubClientEnabled); feature_set.insert(CryptAuthFeatureType::kPhoneHubClientEnabled);
feature_set.insert(CryptAuthFeatureType::kPhoneHubHostSupported);
feature_set.insert(CryptAuthFeatureType::kPhoneHubHostEnabled); feature_set.insert(CryptAuthFeatureType::kPhoneHubHostEnabled);
feature_set.insert(CryptAuthFeatureType::kPhoneHubClientEnabled);
} }
return feature_set; return feature_set;
}()); }());
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment