| Index: chrome/browser/google/google_update_settings_posix.cc
|
| diff --git a/chrome/browser/google/google_update_settings_posix.cc b/chrome/browser/google/google_update_settings_posix.cc
|
| index 8942024c1f963d07cb32b7f0f5a1157c05e16a35..4a69eab1a69d9e1ca757013a78d3d65c4253adfc 100644
|
| --- a/chrome/browser/google/google_update_settings_posix.cc
|
| +++ b/chrome/browser/google/google_update_settings_posix.cc
|
| @@ -27,7 +27,7 @@ bool GoogleUpdateSettings::GetCollectStatsConsent() {
|
| PathService::Get(chrome::DIR_USER_DATA, &consent_file);
|
| consent_file = consent_file.Append(kConsentToSendStats);
|
| std::string tmp_guid;
|
| - bool consented = file_util::ReadFileToString(consent_file, &tmp_guid);
|
| + bool consented = base::ReadFileToString(consent_file, &tmp_guid);
|
| if (consented)
|
| google_update::posix_guid().assign(tmp_guid);
|
| return consented;
|
|
|