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

Unified Diff: chrome/browser/renderer_host/redirect_to_file_resource_handler.h

Issue 3165050: Change the FileUtilProxy callbacks to report error codes instead of booleans.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years, 4 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/renderer_host/redirect_to_file_resource_handler.h
===================================================================
--- chrome/browser/renderer_host/redirect_to_file_resource_handler.h (revision 56938)
+++ chrome/browser/renderer_host/redirect_to_file_resource_handler.h (working copy)
@@ -46,7 +46,8 @@
private:
virtual ~RedirectToFileResourceHandler();
- void DidCreateTemporaryFile(base::PassPlatformFile file_handle,
+ void DidCreateTemporaryFile(int error_code,
+ base::PassPlatformFile file_handle,
FilePath file_path);
void DidWriteToFile(int result);
bool WriteMore();

Powered by Google App Engine
This is Rietveld 408576698