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

Unified Diff: webkit/plugins/npapi/plugin_instance.cc

Issue 18584011: Rename base::Delete to base::DeleteFile (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 5 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 | « webkit/common/blob/scoped_file.cc ('k') | webkit/plugins/npapi/plugin_stream_posix.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/plugins/npapi/plugin_instance.cc
diff --git a/webkit/plugins/npapi/plugin_instance.cc b/webkit/plugins/npapi/plugin_instance.cc
index 2e4f4ce0b07ba59fd04a33e2f4477fd5da8888e3..6eb91dfb9921d53829ef2167ab37b069df2015b7 100644
--- a/webkit/plugins/npapi/plugin_instance.cc
+++ b/webkit/plugins/npapi/plugin_instance.cc
@@ -243,7 +243,7 @@ void PluginInstance::NPP_Destroy() {
for (unsigned int file_index = 0; file_index < files_created_.size();
file_index++) {
- base::Delete(files_created_[file_index], false);
+ base::DeleteFile(files_created_[file_index], false);
}
// Ensure that no timer callbacks are invoked after NPP_Destroy.
« no previous file with comments | « webkit/common/blob/scoped_file.cc ('k') | webkit/plugins/npapi/plugin_stream_posix.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698