Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(557)

Unified Diff: printing/backend/cups_helper.cc

Issue 16950028: Move file_util::Delete to the base namespace (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « net/url_request/url_request_unittest.cc ('k') | printing/backend/print_backend_cups.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: printing/backend/cups_helper.cc
diff --git a/printing/backend/cups_helper.cc b/printing/backend/cups_helper.cc
index 2159aaf43e6792c6490e7efdc092c7736c93a1a1..b6ce99fca4caa16610980b9020f3c622ab6b1e02 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)) {
- file_util::Delete(ppd_file_path, false);
+ base::Delete(ppd_file_path, false);
return false;
}
@@ -387,7 +387,7 @@ bool parsePpdCapabilities(
caps.color_default = is_color;
ppdClose(ppd);
- file_util::Delete(ppd_file_path, false);
+ base::Delete(ppd_file_path, false);
*printer_info = caps;
return true;
« no previous file with comments | « net/url_request/url_request_unittest.cc ('k') | printing/backend/print_backend_cups.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698