replaced by .editorconfig # ignore-this-changeset Differential Revision: https://phabricator.services.mozilla.com/D287843
56 lines
1.9 KiB
C++
56 lines
1.9 KiB
C++
/* 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/. */
|
|
|
|
#ifndef mozilla_dom_JSValidatorChild
|
|
#define mozilla_dom_JSValidatorChild
|
|
|
|
#include "mozilla/ProcInfo.h"
|
|
#include "mozilla/Result.h"
|
|
#include "mozilla/dom/JSValidatorUtils.h"
|
|
#include "mozilla/dom/PJSValidatorChild.h"
|
|
#include "mozilla/net/OpaqueResponseUtils.h"
|
|
|
|
template <typename T>
|
|
using BufferUniquePtr = mozilla::UniquePtr<T, JS::FreePolicy>;
|
|
|
|
namespace mozilla {
|
|
class Decoder;
|
|
} // namespace mozilla
|
|
|
|
namespace mozilla::dom {
|
|
class JSValidatorChild final : public PJSValidatorChild {
|
|
public:
|
|
NS_INLINE_DECL_THREADSAFE_REFCOUNTING(JSValidatorChild, override);
|
|
|
|
mozilla::ipc::IPCResult RecvIsOpaqueResponseAllowed(
|
|
IsOpaqueResponseAllowedResolver&& aResolver);
|
|
|
|
mozilla::ipc::IPCResult RecvOnDataAvailable(Shmem&& aData);
|
|
|
|
mozilla::ipc::IPCResult RecvOnStopRequest(const nsresult& aReason,
|
|
const nsACString& aContentCharset,
|
|
const nsAString& aHintCharset,
|
|
const nsAString& aDocumentCharset);
|
|
|
|
void ActorDestroy(ActorDestroyReason aReason) override;
|
|
|
|
private:
|
|
virtual ~JSValidatorChild() = default;
|
|
|
|
using ValidatorResult = net::OpaqueResponseBlocker::ValidatorResult;
|
|
void Resolve(ValidatorResult aResult);
|
|
ValidatorResult ShouldAllowJS(const mozilla::Span<const char>& aSpan) const;
|
|
|
|
mozilla::Result<mozilla::Span<const char>, nsresult> GetUTF8EncodedContent(
|
|
const mozilla::Span<const uint8_t>& aData,
|
|
BufferUniquePtr<Utf8Unit[]>& aBuffer,
|
|
UniquePtr<mozilla::Decoder>& aDecoder);
|
|
|
|
nsCString mSourceBytes;
|
|
Maybe<IsOpaqueResponseAllowedResolver> mResolver;
|
|
};
|
|
} // namespace mozilla::dom
|
|
|
|
#endif // defined(mozilla_dom_JSValidatorChild)
|