mirror of
https://github.com/roytam1/palemoon27.git
synced 2026-05-26 14:18:48 +00:00
6f81d7d0dc
- namespace comment (0548ea8a8) - Bug 1167411 - Add JSAutoStructuredCloneBuffer::abandon, r=jorendorff (6589a8900) - Bug 911972 - MessagePort and MessageChannel in workers, r=smaug, r=bent (4c533d3ca) - Bug 1172264 - Track the MDSM's duration as a TimeUnit and eliminate the separate concept of 'end time'. r=jww (49f8f2442) - Bug 1172264 - Require Manual disconnection for all mirrors. r=jww (845e57496) - Bug 1172264 - Switch MediaDecoder's mDuration represenation to a double. r=jww (dfde6482d) - Bug 1172264 - Mirror duration from the MDSM to the MediaDecoder. r=jww (a744fd08f) - No bug. Refactor GC type annotations, re=terrence (b6bc5723e) - Bug 1132744 - Update set of GC types, r=sfink (935175adb) - Bug 967031 - Rename DumpHeapComplete to DumpHeap; r=terrence (337391745) - Bug 1169097 - Remove CountHeap; r=sfink (074fdb34c) - Bug 1169086 - Use virtual dispatch to implement callback tracer; r=jonco, r=mccr8 (667218a33)
109 lines
3.3 KiB
C++
109 lines
3.3 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_PostMessageEvent_h
|
|
#define mozilla_dom_PostMessageEvent_h
|
|
|
|
#include "js/StructuredClone.h"
|
|
#include "nsCOMPtr.h"
|
|
#include "mozilla/nsRefPtr.h"
|
|
#include "nsTArray.h"
|
|
|
|
class nsGlobalWindow;
|
|
class nsIPrincipal;
|
|
|
|
namespace mozilla {
|
|
namespace dom {
|
|
|
|
class MessagePortBase;
|
|
class MessagePortIdentifier;
|
|
|
|
/**
|
|
* Class used to represent events generated by calls to Window.postMessage,
|
|
* which asynchronously creates and dispatches events.
|
|
*/
|
|
class PostMessageEvent final : public nsRunnable
|
|
{
|
|
public:
|
|
NS_DECL_NSIRUNNABLE
|
|
|
|
PostMessageEvent(nsGlobalWindow* aSource,
|
|
const nsAString& aCallerOrigin,
|
|
nsGlobalWindow* aTargetWindow,
|
|
nsIPrincipal* aProvidedPrincipal,
|
|
bool aTrustedCaller);
|
|
|
|
bool Write(JSContext* aCx, JS::Handle<JS::Value> aMessage,
|
|
JS::Handle<JS::Value> aTransfer, bool aSubsumes,
|
|
nsPIDOMWindow* aWindow);
|
|
|
|
private:
|
|
~PostMessageEvent();
|
|
|
|
const MessagePortIdentifier& GetPortIdentifier(uint64_t aId);
|
|
|
|
MessagePortIdentifier* NewPortIdentifier(uint64_t* aPosition);
|
|
|
|
bool StoreISupports(nsISupports* aSupports)
|
|
{
|
|
mSupportsArray.AppendElement(aSupports);
|
|
return true;
|
|
}
|
|
|
|
static JSObject*
|
|
ReadStructuredClone(JSContext* cx,
|
|
JSStructuredCloneReader* reader,
|
|
uint32_t tag,
|
|
uint32_t data,
|
|
void* closure);
|
|
|
|
static bool
|
|
WriteStructuredClone(JSContext* cx,
|
|
JSStructuredCloneWriter* writer,
|
|
JS::Handle<JSObject*> obj,
|
|
void *closure);
|
|
|
|
static bool
|
|
ReadTransferStructuredClone(JSContext* aCx,
|
|
JSStructuredCloneReader* reader,
|
|
uint32_t tag, void* aData,
|
|
uint64_t aExtraData,
|
|
void* aClosure,
|
|
JS::MutableHandle<JSObject*> returnObject);
|
|
|
|
static bool
|
|
TransferStructuredClone(JSContext* aCx,
|
|
JS::Handle<JSObject*> aObj,
|
|
void* aClosure,
|
|
uint32_t* aTag,
|
|
JS::TransferableOwnership* aOwnership,
|
|
void** aContent,
|
|
uint64_t* aExtraData);
|
|
|
|
static void
|
|
FreeTransferStructuredClone(uint32_t aTag,
|
|
JS::TransferableOwnership aOwnership,
|
|
void *aContent,
|
|
uint64_t aExtraData,
|
|
void* aClosure);
|
|
|
|
static const JSStructuredCloneCallbacks sPostMessageCallbacks;
|
|
|
|
JSAutoStructuredCloneBuffer mBuffer;
|
|
nsRefPtr<nsGlobalWindow> mSource;
|
|
nsString mCallerOrigin;
|
|
nsRefPtr<nsGlobalWindow> mTargetWindow;
|
|
nsCOMPtr<nsIPrincipal> mProvidedPrincipal;
|
|
bool mTrustedCaller;
|
|
nsTArray<nsCOMPtr<nsISupports>> mSupportsArray;
|
|
nsTArray<MessagePortIdentifier> mPortIdentifiers;
|
|
};
|
|
|
|
} // dom namespace
|
|
} // mozilla namespace
|
|
|
|
#endif // mozilla_dom_PostMessageEvent_h
|