summaryrefslogtreecommitdiffstats
path: root/WebKit/chromium/public/WebHTTPBody.h
diff options
context:
space:
mode:
Diffstat (limited to 'WebKit/chromium/public/WebHTTPBody.h')
-rw-r--r--WebKit/chromium/public/WebHTTPBody.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/WebKit/chromium/public/WebHTTPBody.h b/WebKit/chromium/public/WebHTTPBody.h
index a2bb5cd..6e45bf6 100644
--- a/WebKit/chromium/public/WebHTTPBody.h
+++ b/WebKit/chromium/public/WebHTTPBody.h
@@ -54,7 +54,9 @@ public:
WebString filePath;
long long fileStart;
long long fileLength; // -1 means to the end of the file.
+ // FIXME: remove this field once all users of Element have been switched to use 'modificationTime'.
WebFileInfo fileInfo;
+ double modificationTime;
WebURL blobURL;
};
@@ -85,6 +87,8 @@ public:
WEBKIT_API void appendData(const WebData&);
WEBKIT_API void appendFile(const WebString&);
// Passing -1 to fileLength means to the end of the file.
+ WEBKIT_API void appendFileRange(const WebString&, long long fileStart, long long fileLength, double modificationTime);
+ // FIXME: Remove this method once all callers have been switched to use the method above.
WEBKIT_API void appendFileRange(const WebString&, long long fileStart, long long fileLength, const WebFileInfo&);
WEBKIT_API void appendBlob(const WebURL&);