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

Unified Diff: Platform/chromium/public/WebBlobData.h

Issue 11192017: ********** WebCore blob hacking (Closed) Base URL: http://svn.webkit.org/repository/webkit/trunk/Source/
Patch Set: Created 7 years, 11 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
« no previous file with comments | « no previous file | Platform/chromium/public/WebBlobRegistry.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Platform/chromium/public/WebBlobData.h
===================================================================
--- Platform/chromium/public/WebBlobData.h (revision 140218)
+++ Platform/chromium/public/WebBlobData.h (working copy)
@@ -47,16 +47,14 @@
class WebBlobData {
public:
struct Item {
- enum { TypeData, TypeFile, TypeBlob, TypeURL } type;
+ enum { TypeData, TypeFile, TypeBlob, TypeFileSystemURL } type;
WebThreadSafeData data;
WebString filePath;
- WebURL url; // For TypeBlob or TypeURL.
+ WebURL fileSystemURL;
+ WebString blobUUID;
long long offset;
long long length; // -1 means go to the end of the file/blob.
double expectedModificationTime; // 0.0 means that the time is not set.
-
- // FIXME: deprecate this.
- WebURL blobURL;
};
~WebBlobData() { reset(); }
« no previous file with comments | « no previous file | Platform/chromium/public/WebBlobRegistry.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698