mirror of
https://github.com/roytam1/basilisk55.git
synced 2026-05-26 15:02:46 +00:00
eb31645dcb
- Issue #2548 - Part 1 - Implement MathML DOM and pre-requisites. https://bugzilla.mozilla.org/show_bug.cgi?id=1571487 Introduce interface mixins. https://bugzilla.mozilla.org/show_bug.cgi?id=1414372 Switch XPathEvaluator to using IDL mixins and remaining users of IDL "implements" over to mixin syntax. https://bugzilla.mozilla.org/show_bug.cgi?id=1574195 Introduce GlobalEventHandlers/DocumentAndElementEventHandlers/ElementCSSInlineStyle mixin. https://bugzilla.mozilla.org/show_bug.cgi?id=1579457 Introduce DocumentAndElementEventHandlers to more closely align with the HTML spec. https://bugzilla.mozilla.org/show_bug.cgi?id=1330457 Remove the use of IsCallerChrome in FetchRequest. https://bugzilla.mozilla.org/show_bug.cgi?id=1335368 (85600c73) - Issue #2548 - Part 2 - Collection of WebIDL parsing updates in an attempt to fix partial interface mixin error. We should ensure, at build-time, that partial interfaces are defined in the same file as the interface they extend. Since our build system doesn't really support correct dep builds if they're placed in a different file. https://bugzilla.mozilla.org/show_bug.cgi?id=1333117 WebIDL: Better error message for trying to inherit from a mixin. https://bugzilla.mozilla.org/show_bug.cgi?id=1575384 Fix webidl identifier conflicts involving typedefs to produce saner exceptions. https://bugzilla.mozilla.org/show_bug.cgi?id=1531623 Disallow nullable types for WebIDL constants. https://bugzilla.mozilla.org/show_bug.cgi?id=1535647 Add support for extended attributes on types in Web IDL https://bugzilla.mozilla.org/show_bug.cgi?id=1359269 Allow LenientFloat to be only in a specific overload https://bugzilla.mozilla.org/show_bug.cgi?id=1020975 (81b4f0c3) - Issue #2548 - Part 3 - Fix some MathML issues encountered since WebIDL works. https://bugzilla.mozilla.org/show_bug.cgi?id=1316616 Also added a Fetch() change that was not in the Mozilla patch. (20354b67) - Issue #2548 - Part 4 - Fix some missed changes for ElementCSSInlineStyle. Introduce GlobalEventHandlers/DocumentAndElementEventHandlers/ElementCSSInlineStyle mixin. https://bugzilla.mozilla.org/show_bug.cgi?id=157945 (502c7047) - Issue #2548 - Part 5 - Implement the HTMLOrForeignElement mixin. https://bugzilla.mozilla.org/show_bug.cgi?id=1577660 Add 'preventScroll' option to HTMLElement's, SVGElement's and XULElement's 'focus' method. https://bugzilla.mozilla.org/show_bug.cgi?id=1374045 (3febe21f)
123 lines
3.5 KiB
C++
123 lines
3.5 KiB
C++
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
|
/* 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_cache_Cache_h
|
|
#define mozilla_dom_cache_Cache_h
|
|
|
|
#include "mozilla/dom/cache/Types.h"
|
|
#include "mozilla/dom/cache/TypeUtils.h"
|
|
#include "nsCOMPtr.h"
|
|
#include "nsISupportsImpl.h"
|
|
#include "nsString.h"
|
|
#include "nsWrapperCache.h"
|
|
|
|
class nsIGlobalObject;
|
|
|
|
namespace mozilla {
|
|
|
|
class ErrorResult;
|
|
|
|
namespace dom {
|
|
|
|
class OwningRequestOrUSVString;
|
|
class Promise;
|
|
struct CacheQueryOptions;
|
|
class RequestOrUSVString;
|
|
class Response;
|
|
template<typename T> class Optional;
|
|
template<typename T> class Sequence;
|
|
enum class CallerType : uint32_t;
|
|
|
|
namespace cache {
|
|
|
|
class AutoChildOpArgs;
|
|
class CacheChild;
|
|
|
|
class Cache final : public nsISupports
|
|
, public nsWrapperCache
|
|
, public TypeUtils
|
|
{
|
|
public:
|
|
Cache(nsIGlobalObject* aGlobal, CacheChild* aActor);
|
|
|
|
// webidl interface methods
|
|
already_AddRefed<Promise>
|
|
Match(JSContext* aCx, const RequestOrUSVString& aRequest,
|
|
const CacheQueryOptions& aOptions, ErrorResult& aRv);
|
|
already_AddRefed<Promise>
|
|
MatchAll(JSContext* aCx, const Optional<RequestOrUSVString>& aRequest,
|
|
const CacheQueryOptions& aOptions, ErrorResult& aRv);
|
|
already_AddRefed<Promise>
|
|
Add(JSContext* aContext, const RequestOrUSVString& aRequest,
|
|
CallerType aCallerType, ErrorResult& aRv);
|
|
already_AddRefed<Promise>
|
|
AddAll(JSContext* aContext,
|
|
const Sequence<OwningRequestOrUSVString>& aRequests,
|
|
CallerType aCallerType, ErrorResult& aRv);
|
|
already_AddRefed<Promise>
|
|
Put(JSContext* aCx, const RequestOrUSVString& aRequest, Response& aResponse,
|
|
ErrorResult& aRv);
|
|
already_AddRefed<Promise>
|
|
Delete(JSContext* aCx, const RequestOrUSVString& aRequest,
|
|
const CacheQueryOptions& aOptions, ErrorResult& aRv);
|
|
already_AddRefed<Promise>
|
|
Keys(JSContext* aCx, const Optional<RequestOrUSVString>& aRequest,
|
|
const CacheQueryOptions& aParams, ErrorResult& aRv);
|
|
|
|
// binding methods
|
|
static bool PrefEnabled(JSContext* aCx, JSObject* aObj);
|
|
|
|
nsISupports* GetParentObject() const;
|
|
virtual JSObject* WrapObject(JSContext* aContext, JS::Handle<JSObject*> aGivenProto) override;
|
|
|
|
// Called when CacheChild actor is being destroyed
|
|
void DestroyInternal(CacheChild* aActor);
|
|
|
|
// TypeUtils methods
|
|
virtual nsIGlobalObject*
|
|
GetGlobalObject() const override;
|
|
|
|
#ifdef DEBUG
|
|
virtual void AssertOwningThread() const override;
|
|
#endif
|
|
|
|
virtual mozilla::ipc::PBackgroundChild*
|
|
GetIPCManager() override;
|
|
|
|
private:
|
|
class FetchHandler;
|
|
|
|
~Cache();
|
|
|
|
// Called when we're destroyed or CCed.
|
|
void DisconnectFromActor();
|
|
|
|
already_AddRefed<Promise>
|
|
ExecuteOp(AutoChildOpArgs& aOpArgs, ErrorResult& aRv);
|
|
|
|
already_AddRefed<Promise>
|
|
AddAll(const GlobalObject& aGlobal, nsTArray<RefPtr<Request>>&& aRequestList,
|
|
CallerType aCallerType, ErrorResult& aRv);
|
|
|
|
already_AddRefed<Promise>
|
|
PutAll(JSContext* aCx, const nsTArray<RefPtr<Request>>& aRequestList,
|
|
const nsTArray<RefPtr<Response>>& aResponseList,
|
|
ErrorResult& aRv);
|
|
|
|
nsCOMPtr<nsIGlobalObject> mGlobal;
|
|
CacheChild* mActor;
|
|
|
|
public:
|
|
NS_DECL_CYCLE_COLLECTING_ISUPPORTS
|
|
NS_DECL_CYCLE_COLLECTION_SCRIPT_HOLDER_CLASS(Cache)
|
|
};
|
|
|
|
} // namespace cache
|
|
} // namespace dom
|
|
} // namespace mozilla
|
|
|
|
#endif // mozilla_dom_Cache_h
|