| Index: components/variations/service/variations_service.cc
|
| diff --git a/components/variations/service/variations_service.cc b/components/variations/service/variations_service.cc
|
| index 3d41ce3c7643455d971fba59b1625bf29c4af07b..c68176ea9cfbf05c663e244e1d8f7c8f3e834bd4 100644
|
| --- a/components/variations/service/variations_service.cc
|
| +++ b/components/variations/service/variations_service.cc
|
| @@ -799,7 +799,7 @@ std::string VariationsService::LoadPermanentConsistencyCountry(
|
|
|
| // Determine if the version from the saved pref matches |version|.
|
| const bool does_version_match =
|
| - is_pref_valid && version.Equals(base::Version(stored_version_string));
|
| + is_pref_valid && version == base::Version(stored_version_string);
|
|
|
| // Determine if the country in the saved pref matches the country in
|
| // |latest_country|.
|
|
|