2015-05-03 22:32:37 +03:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
2012-05-21 15:12:37 +04:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
2011-08-16 07:40:38 +04:00
|
|
|
|
2016-03-16 21:51:11 +03:00
|
|
|
#ifndef mozilla_dom_filereadersync_h__
|
|
|
|
#define mozilla_dom_filereadersync_h__
|
2011-08-16 07:40:38 +04:00
|
|
|
|
|
|
|
#include "Workers.h"
|
|
|
|
|
2012-09-21 06:47:47 +04:00
|
|
|
class nsIInputStream;
|
2011-08-16 07:40:38 +04:00
|
|
|
|
2013-09-06 10:43:26 +04:00
|
|
|
namespace mozilla {
|
|
|
|
class ErrorResult;
|
|
|
|
|
|
|
|
namespace dom {
|
2015-05-12 15:09:51 +03:00
|
|
|
class Blob;
|
2013-09-06 10:43:26 +04:00
|
|
|
class GlobalObject;
|
|
|
|
template<typename> class Optional;
|
2011-08-16 07:40:38 +04:00
|
|
|
|
2015-03-21 19:28:04 +03:00
|
|
|
class FileReaderSync final
|
2012-09-21 06:47:47 +04:00
|
|
|
{
|
2013-12-17 14:47:25 +04:00
|
|
|
NS_INLINE_DECL_REFCOUNTING(FileReaderSync)
|
|
|
|
|
2014-04-02 20:21:03 +04:00
|
|
|
private:
|
|
|
|
// Private destructor, to discourage deletion outside of Release():
|
|
|
|
~FileReaderSync()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2012-09-21 06:47:47 +04:00
|
|
|
nsresult ConvertStream(nsIInputStream *aStream, const char *aCharset,
|
|
|
|
nsAString &aResult);
|
|
|
|
|
|
|
|
public:
|
2013-09-30 08:15:37 +04:00
|
|
|
static already_AddRefed<FileReaderSync>
|
2013-08-23 09:17:08 +04:00
|
|
|
Constructor(const GlobalObject& aGlobal, ErrorResult& aRv);
|
2012-09-21 06:47:47 +04:00
|
|
|
|
Bug 1117172 part 2. Change the non-wrappercached WrapObject methods to allow passing in aGivenProto. r=peterv
The only manual changes here are to BindingUtils.h, Codegen.py, and
StructuredClone.cpp. The rest of this diff was generated by running the following commands:
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/WrapObject\((JSContext *\* *(?:aCx|cx)),(\s*)(JS::MutableHandle<JSObject\*> aReflector)/WrapObject(\1,\2JS::Handle<JSObject*> aGivenProto,\2\3/g'
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(Binding(?:_workers)?::Wrap\((?:aCx|cx)), this, aReflector/\1, this, aGivenProto, aReflector/'
2015-03-19 17:13:32 +03:00
|
|
|
bool WrapObject(JSContext* aCx, JS::Handle<JSObject*> aGivenProto, JS::MutableHandle<JSObject*> aReflector);
|
2012-09-21 06:47:47 +04:00
|
|
|
|
2014-06-12 00:26:52 +04:00
|
|
|
void ReadAsArrayBuffer(JSContext* aCx, JS::Handle<JSObject*> aScopeObj,
|
2015-05-12 15:09:51 +03:00
|
|
|
Blob& aBlob, JS::MutableHandle<JSObject*> aRetval,
|
2014-06-12 00:26:52 +04:00
|
|
|
ErrorResult& aRv);
|
2015-05-12 15:09:51 +03:00
|
|
|
void ReadAsBinaryString(Blob& aBlob, nsAString& aResult, ErrorResult& aRv);
|
|
|
|
void ReadAsText(Blob& aBlob, const Optional<nsAString>& aEncoding,
|
2012-09-21 06:47:47 +04:00
|
|
|
nsAString& aResult, ErrorResult& aRv);
|
2015-05-12 15:09:51 +03:00
|
|
|
void ReadAsDataURL(Blob& aBlob, nsAString& aResult, ErrorResult& aRv);
|
2012-09-21 06:47:47 +04:00
|
|
|
};
|
2011-08-16 07:40:38 +04:00
|
|
|
|
2016-03-16 21:51:11 +03:00
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|
2011-08-16 07:40:38 +04:00
|
|
|
|
2016-03-16 21:51:11 +03:00
|
|
|
#endif // mozilla_dom_filereadersync_h__
|