| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2013 Google Inc. All rights reserved. | 2 * Copyright (C) 2013 Google Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
| 6 * met: | 6 * met: |
| 7 * | 7 * |
| 8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 55 } else { | 55 } else { |
| 56 const int sequenceArgumentIndex = 0; | 56 const int sequenceArgumentIndex = 0; |
| 57 if (toV8Sequence(info[sequenceArgumentIndex], length, info.GetIsolate())
.IsEmpty()) { | 57 if (toV8Sequence(info[sequenceArgumentIndex], length, info.GetIsolate())
.IsEmpty()) { |
| 58 throwTypeError(ExceptionMessages::failedToConstruct("File", Exceptio
nMessages::notAnArrayTypeArgumentOrValue(sequenceArgumentIndex + 1)), info.GetIs
olate()); | 58 throwTypeError(ExceptionMessages::failedToConstruct("File", Exceptio
nMessages::notAnArrayTypeArgumentOrValue(sequenceArgumentIndex + 1)), info.GetIs
olate()); |
| 59 return; | 59 return; |
| 60 } | 60 } |
| 61 } | 61 } |
| 62 | 62 |
| 63 V8TRYCATCH_FOR_V8STRINGRESOURCE_VOID(V8StringResource<>, fileName, info[1]); | 63 V8TRYCATCH_FOR_V8STRINGRESOURCE_VOID(V8StringResource<>, fileName, info[1]); |
| 64 | 64 |
| 65 String contentType; | 65 V8BlobCustomHelpers::ParsedProperties properties(true); |
| 66 String endings = "transparent"; // default if no BlobPropertyBag is passed | |
| 67 if (info.Length() > 2) { | 66 if (info.Length() > 2) { |
| 68 if (!info[2]->IsObject()) { | 67 if (!info[2]->IsObject()) { |
| 69 throwTypeError(ExceptionMessages::failedToConstruct("File", "The 3rd
argument is not of type Object."), info.GetIsolate()); | 68 throwTypeError(ExceptionMessages::failedToConstruct("File", "The 3rd
argument is not of type Object."), info.GetIsolate()); |
| 70 return; | 69 return; |
| 71 } | 70 } |
| 72 | 71 |
| 73 if (!V8BlobCustomHelpers::processBlobPropertyBag(info[2], "File", conten
tType, endings, info.GetIsolate())) | 72 if (!V8BlobCustomHelpers::processBlobPropertyBag(info[2], "File", proper
ties, info.GetIsolate())) |
| 74 return; | 73 return; |
| 75 } | 74 } |
| 76 | 75 |
| 77 BlobBuilder blobBuilder; | 76 BlobBuilder blobBuilder; |
| 78 v8::Local<v8::Object> blobParts = v8::Local<v8::Object>::Cast(info[0]); | 77 v8::Local<v8::Object> blobParts = v8::Local<v8::Object>::Cast(info[0]); |
| 79 if (!V8BlobCustomHelpers::processBlobParts(blobParts, length, endings, blobB
uilder, info.GetIsolate())) | 78 if (!V8BlobCustomHelpers::processBlobParts(blobParts, length, properties.end
ings, blobBuilder, info.GetIsolate())) |
| 80 return; | 79 return; |
| 81 | 80 |
| 82 RefPtr<File> file = blobBuilder.createFile(contentType, fileName, currentTim
e()); | 81 RefPtr<File> file = blobBuilder.createFile(properties.contentType, fileName,
properties.lastModifiedDate()); |
| 83 v8SetReturnValue(info, file.release()); | 82 v8SetReturnValue(info, file.release()); |
| 84 } | 83 } |
| 85 | 84 |
| 86 } // namespace WebCore | 85 } // namespace WebCore |
| OLD | NEW |