| Index: chrome/browser/renderer_host/pepper/device_id_fetcher.cc
|
| diff --git a/chrome/browser/renderer_host/pepper/device_id_fetcher.cc b/chrome/browser/renderer_host/pepper/device_id_fetcher.cc
|
| index 39380db6c94c6bae33fef571193634cbe9a922a3..8c7cf5d17ab6a7a69c72c14c252fe5fe3f00648d 100644
|
| --- a/chrome/browser/renderer_host/pepper/device_id_fetcher.cc
|
| +++ b/chrome/browser/renderer_host/pepper/device_id_fetcher.cc
|
| @@ -168,7 +168,7 @@ void DeviceIDFetcher::ComputeOnBlockingPool(const base::FilePath& profile_path,
|
| // should just return that.
|
| base::FilePath id_path = GetLegacyDeviceIDPath(profile_path);
|
| if (base::PathExists(id_path)) {
|
| - if (file_util::ReadFileToString(id_path, &id) && !id.empty()) {
|
| + if (base::ReadFileToString(id_path, &id) && !id.empty()) {
|
| RunCallbackOnIOThread(id);
|
| return;
|
| }
|
|
|