| Index: printing/backend/cups_helper.cc
|
| diff --git a/printing/backend/cups_helper.cc b/printing/backend/cups_helper.cc
|
| index 30a4b5b9b95cc5af49059d2d8ec6fcf61c48339c..1c143a5dd51b9112fad6ce5fe106bd5794802ed2 100644
|
| --- a/printing/backend/cups_helper.cc
|
| +++ b/printing/backend/cups_helper.cc
|
| @@ -350,7 +350,7 @@ bool parsePpdCapabilities(
|
| ppd_file_path,
|
| printer_capabilities.data(),
|
| data_size)) {
|
| - base::Delete(ppd_file_path, false);
|
| + base::DeleteFile(ppd_file_path, false);
|
| return false;
|
| }
|
|
|
| @@ -387,7 +387,7 @@ bool parsePpdCapabilities(
|
| caps.color_default = is_color;
|
|
|
| ppdClose(ppd);
|
| - base::Delete(ppd_file_path, false);
|
| + base::DeleteFile(ppd_file_path, false);
|
|
|
| *printer_info = caps;
|
| return true;
|
|
|