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

Unified Diff: webkit/blob/deletable_file_reference.cc

Issue 6286038: Add initial code to do filename munging in the FileSystem.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 10 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
Index: webkit/blob/deletable_file_reference.cc
===================================================================
--- webkit/blob/deletable_file_reference.cc (revision 72915)
+++ webkit/blob/deletable_file_reference.cc (working copy)
@@ -55,7 +55,8 @@
DeletableFileReference::~DeletableFileReference() {
DCHECK(g_deletable_file_map.Get().find(path_)->second == this);
g_deletable_file_map.Get().erase(path_);
- base::FileUtilProxy::Delete(file_thread_, path_, false /* recursive */, NULL);
+ base::FileUtilProxy::GetInstance()->Delete(
+ file_thread_, path_, false /* recursive */, NULL);
}
} // namespace webkit_blob

Powered by Google App Engine
This is Rietveld 408576698