Bug 1409325 - Update FileReader WebIDL File, r=smaug

This commit is contained in:
Andrea Marchesini 2017-10-17 13:41:01 +02:00
Родитель 44860178be
Коммит ba7f928d6a
5 изменённых файлов: 20 добавлений и 14 удалений

Просмотреть файл

@ -189,11 +189,16 @@ Blob::GetType(nsAString &aType)
already_AddRefed<Blob>
Blob::Slice(const Optional<int64_t>& aStart,
const Optional<int64_t>& aEnd,
const nsAString& aContentType,
const Optional<nsAString>& aContentType,
ErrorResult& aRv)
{
nsAutoString contentType;
if (aContentType.WasPassed()) {
contentType = aContentType.Value();
}
RefPtr<BlobImpl> impl =
mImpl->Slice(aStart, aEnd, aContentType, aRv);
mImpl->Slice(aStart, aEnd, contentType, aRv);
if (aRv.Failed()) {
return nullptr;
}

Просмотреть файл

@ -122,7 +122,7 @@ public:
already_AddRefed<Blob> Slice(const Optional<int64_t>& aStart,
const Optional<int64_t>& aEnd,
const nsAString& aContentType,
const Optional<nsAString>& aContentType,
ErrorResult& aRv);
size_t GetAllocationSize() const;

Просмотреть файл

@ -72,9 +72,14 @@ public:
ReadFileContent(aBlob, EmptyString(), FILE_AS_ARRAYBUFFER, aRv);
}
void ReadAsText(Blob& aBlob, const nsAString& aLabel, ErrorResult& aRv)
void ReadAsText(Blob& aBlob, const Optional<nsAString>& aLabel,
ErrorResult& aRv)
{
ReadFileContent(aBlob, aLabel, FILE_AS_TEXT, aRv);
if (aLabel.WasPassed()) {
ReadFileContent(aBlob, aLabel.Value(), FILE_AS_TEXT, aRv);
} else {
ReadFileContent(aBlob, EmptyString(), FILE_AS_TEXT, aRv);
}
}
void ReadAsDataURL(Blob& aBlob, ErrorResult& aRv)

Просмотреть файл

@ -27,7 +27,7 @@ interface Blob {
[Throws]
Blob slice([Clamp] optional long long start,
[Clamp] optional long long end,
optional DOMString contentType = "");
optional DOMString contentType);
};
enum EndingTypes { "transparent", "native" };

Просмотреть файл

@ -4,7 +4,7 @@
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
* The origin of this IDL file is
* http://dev.w3.org/2006/webapi/FileAPI/#dfn-filereader
* https://w3c.github.io/FileAPI/#APIASynch
*
* Copyright © 2013 W3C® (MIT, ERCIM, Keio, Beihang), All Rights Reserved. W3C
* liability, trademark and document use rules apply.
@ -17,7 +17,9 @@ interface FileReader : EventTarget {
[Throws]
void readAsArrayBuffer(Blob blob);
[Throws]
void readAsText(Blob blob, optional DOMString label = "");
void readAsBinaryString(Blob filedata);
[Throws]
void readAsText(Blob blob, optional DOMString label);
[Throws]
void readAsDataURL(Blob blob);
@ -46,9 +48,3 @@ interface FileReader : EventTarget {
attribute EventHandler onerror;
attribute EventHandler onloadend;
};
// Mozilla extensions.
partial interface FileReader {
[Throws]
void readAsBinaryString(Blob filedata);
};