| Index: components/variations/service/variations_service.cc
|
| diff --git a/components/variations/service/variations_service.cc b/components/variations/service/variations_service.cc
|
| index 0a6332195ac88d12a2f2b19891fd0fc50ba7e8d3..58bfab391b781515c8c09d2c0c513d4cc10a81ff 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|.
|
|
|