| 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(); }
|
|
|