| Index: cloud_print/gcp20/prototype/printer_state.cc
|
| diff --git a/cloud_print/gcp20/prototype/printer_state.cc b/cloud_print/gcp20/prototype/printer_state.cc
|
| index 78dbaa990c00d8e74fe19950823bebfd48ce7556..cf1891d956db04b765cda3c654757af8b1d03df9 100644
|
| --- a/cloud_print/gcp20/prototype/printer_state.cc
|
| +++ b/cloud_print/gcp20/prototype/printer_state.cc
|
| @@ -75,7 +75,7 @@ bool SaveToFile(const base::FilePath& path, const PrinterState& state) {
|
|
|
| bool LoadFromFile(const base::FilePath& path, PrinterState* state) {
|
| std::string json_str;
|
| - if (!file_util::ReadFileToString(path, &json_str)) {
|
| + if (!base::ReadFileToString(path, &json_str)) {
|
| LOG(ERROR) << "Cannot open file.";
|
| return false;
|
| }
|
|
|