Chromium Code Reviews

Unified Diff: webkit/glue/resource_loader_bridge.h

Issue 113931: Remove code path that passes a file handle to the renderer... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
« no previous file with comments | « net/url_request/url_request_file_job.cc ('k') | webkit/glue/resource_loader_bridge.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/glue/resource_loader_bridge.h
===================================================================
--- webkit/glue/resource_loader_bridge.h (revision 17048)
+++ webkit/glue/resource_loader_bridge.h (working copy)
@@ -70,20 +70,6 @@
// The appcache this response was loaded from, or kNoAppCacheId.
int64 app_cache_id;
-
- // A platform specific handle for a file that carries response data. This
- // entry is used if the resource request is of type ResourceType::MEDIA and
- // the underlying cache layer keeps the response data in a standalone file.
-#if defined(OS_POSIX)
- // If the response data file is available, the file handle is stored in
- // response_data_file.fd, its value is base::kInvalidPlatformFileValue
- // otherwise.
- base::FileDescriptor response_data_file;
-#elif defined(OS_WIN)
- // An asynchronous file handle to the response data file, its value is
- // base::kInvalidPlatformFileValue if the file is not available.
- base::PlatformFile response_data_file;
-#endif
};
// See the SyncLoad method declared below. (The name of this struct is not
@@ -114,13 +100,6 @@
public:
virtual ~Peer() {}
- // Called as download progress is made.
- // note: only for requests with LOAD_ENABLE_DOWNLOAD_FILE set and the
- // resource is downloaded to a standalone file and the file handle to it is
- // passed in ResponseInfo during OnReceivedResponse. Note that size may be
- // unknown and |size| will be kuint64max in that case.
- virtual void OnDownloadProgress(uint64 position, uint64 size) {}
-
// Called as upload progress is made.
// note: only for requests with LOAD_ENABLE_UPLOAD_PROGRESS set
virtual void OnUploadProgress(uint64 position, uint64 size) = 0;
« no previous file with comments | « net/url_request/url_request_file_job.cc ('k') | webkit/glue/resource_loader_bridge.cc » ('j') | no next file with comments »

Powered by Google App Engine