| Index: chrome/browser/ui/webui/options/certificate_manager_handler.cc
|
| diff --git a/chrome/browser/ui/webui/options/certificate_manager_handler.cc b/chrome/browser/ui/webui/options/certificate_manager_handler.cc
|
| index b34ff7ac7f313825df2f5d25cba9895e05f57bd1..8899045c07b6c9eb670703feccd582e89897b3ee 100644
|
| --- a/chrome/browser/ui/webui/options/certificate_manager_handler.cc
|
| +++ b/chrome/browser/ui/webui/options/certificate_manager_handler.cc
|
| @@ -272,7 +272,7 @@ CancelableTaskTracker::TaskId FileAccessProvider::StartWrite(
|
| void FileAccessProvider::DoRead(const base::FilePath& path,
|
| int* saved_errno,
|
| std::string* data) {
|
| - bool success = file_util::ReadFileToString(path, data);
|
| + bool success = base::ReadFileToString(path, data);
|
| *saved_errno = success ? 0 : errno;
|
| }
|
|
|
|
|