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

Unified Diff: chrome/browser/printing/print_dialog_gtk.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: chrome/browser/printing/print_dialog_gtk.cc
===================================================================
--- chrome/browser/printing/print_dialog_gtk.cc (revision 72915)
+++ chrome/browser/printing/print_dialog_gtk.cc (working copy)
@@ -90,7 +90,7 @@
base::AutoLock lock(DialogLock());
if (g_print_dialog) {
// Clean up the temporary file.
- base::FileUtilProxy::Delete(
+ base::FileUtilProxy::GetInstance()->Delete(
BrowserThread::GetMessageLoopProxyForThread(BrowserThread::FILE),
path, false, NULL);
return;
@@ -178,7 +178,7 @@
if (job)
g_object_unref(job);
- base::FileUtilProxy::Delete(
+ base::FileUtilProxy::GetInstance()->Delete(
BrowserThread::GetMessageLoopProxyForThread(BrowserThread::FILE),
path_to_pdf_,
false,

Powered by Google App Engine
This is Rietveld 408576698