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

Side by Side Diff: Source/bindings/v8/custom/V8FileCustom.cpp

Issue 74213009: File constructor understands lastModified. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 7 years, 1 month 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 unified diff | Download patch
OLDNEW
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
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698