2007-12-11 08:18:04 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2012-05-21 11:12:37 +00: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/. */
|
2007-12-11 08:18:04 +00:00
|
|
|
|
2014-02-26 05:23:57 +00:00
|
|
|
#ifndef mozilla_dom_DataContainerEvent_h_
|
|
|
|
#define mozilla_dom_DataContainerEvent_h_
|
2007-12-11 08:18:04 +00:00
|
|
|
|
2014-03-05 00:37:43 +00:00
|
|
|
#include "mozilla/dom/DataContainerEventBinding.h"
|
|
|
|
#include "mozilla/dom/Event.h"
|
2007-12-11 08:18:04 +00:00
|
|
|
#include "nsIDOMDataContainerEvent.h"
|
2009-02-19 19:03:28 +00:00
|
|
|
#include "nsInterfaceHashtable.h"
|
2007-12-11 08:18:04 +00:00
|
|
|
|
2014-02-26 05:23:57 +00:00
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
|
|
|
|
2014-03-05 00:37:43 +00:00
|
|
|
class DataContainerEvent : public Event,
|
2014-02-26 05:23:57 +00:00
|
|
|
public nsIDOMDataContainerEvent
|
2007-12-11 08:18:04 +00:00
|
|
|
{
|
|
|
|
public:
|
2014-02-26 05:23:57 +00:00
|
|
|
DataContainerEvent(EventTarget* aOwner,
|
|
|
|
nsPresContext* aPresContext,
|
|
|
|
WidgetEvent* aEvent);
|
2007-12-11 08:18:04 +00:00
|
|
|
|
|
|
|
NS_DECL_ISUPPORTS_INHERITED
|
|
|
|
|
2014-03-05 00:37:43 +00:00
|
|
|
NS_DECL_CYCLE_COLLECTION_CLASS_INHERITED(DataContainerEvent, Event)
|
2007-12-11 08:18:04 +00:00
|
|
|
|
2014-03-05 00:37:43 +00:00
|
|
|
NS_FORWARD_TO_EVENT
|
2007-12-11 08:18:04 +00:00
|
|
|
|
|
|
|
NS_DECL_NSIDOMDATACONTAINEREVENT
|
|
|
|
|
2013-05-16 14:10:30 +00:00
|
|
|
virtual JSObject*
|
2015-03-21 16:28:04 +00:00
|
|
|
WrapObjectInternal(JSContext* aCx, JS::Handle<JSObject*> aGivenProto) override
|
2013-05-16 14:10:30 +00:00
|
|
|
{
|
Bug 1117172 part 3. Change the wrappercached WrapObject methods to allow passing in aGivenProto. r=peterv
The only manual changes here are to BindingUtils.h, BindingUtils.cpp,
Codegen.py, Element.cpp, IDBFileRequest.cpp, IDBObjectStore.cpp,
dom/workers/Navigator.cpp, WorkerPrivate.cpp, DeviceStorageRequestChild.cpp,
Notification.cpp, nsGlobalWindow.cpp, MessagePort.cpp, nsJSEnvironment.cpp,
Sandbox.cpp, XPCConvert.cpp, ExportHelpers.cpp, and DataStoreService.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/(WrapObjectInternal\(JSContext *\* *(?:aCx|cx|aContext|aCtx|js))\)/\1, JS::Handle<JSObject*> aGivenProto)/g'
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(WrapObjectInternal\((?:aCx|cx|aContext|aCtx|js))\)/\1, aGivenProto)/g'
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(WrapNode\(JSContext *\* *(?:aCx|cx|aContext|aCtx|js))\)/\1, JS::Handle<JSObject*> aGivenProto)/g'
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(WrapNode\((?:aCx|cx|aContext|aCtx|js))\)/\1, aGivenProto)/g'
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(WrapObject\(JSContext *\* *(?:aCx|cx|aContext|aCtx|js))\)/\1, JS::Handle<JSObject*> aGivenProto)/g'
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(Binding(?:_workers)?::Wrap\((?:aCx|cx|aContext|aCtx|js), [^,)]+)\)/\1, aGivenProto)/g'
2015-03-19 14:13:33 +00:00
|
|
|
return DataContainerEventBinding::Wrap(aCx, this, aGivenProto);
|
2013-05-16 14:10:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
already_AddRefed<nsIVariant> GetData(const nsAString& aKey)
|
|
|
|
{
|
|
|
|
nsCOMPtr<nsIVariant> val;
|
|
|
|
GetData(aKey, getter_AddRefs(val));
|
|
|
|
return val.forget();
|
|
|
|
}
|
|
|
|
|
2013-05-30 21:46:48 +00:00
|
|
|
void SetData(JSContext* aCx, const nsAString& aKey,
|
2014-02-26 05:23:57 +00:00
|
|
|
JS::Handle<JS::Value> aVal, ErrorResult& aRv);
|
2013-05-16 14:10:30 +00:00
|
|
|
|
2014-07-08 21:23:17 +00:00
|
|
|
protected:
|
|
|
|
~DataContainerEvent() {}
|
|
|
|
|
2007-12-11 08:18:04 +00:00
|
|
|
private:
|
2008-10-10 15:04:34 +00:00
|
|
|
static PLDHashOperator
|
2014-02-26 05:23:57 +00:00
|
|
|
TraverseEntry(const nsAString& aKey, nsIVariant* aDataItem, void* aUserArg);
|
2007-12-11 08:18:04 +00:00
|
|
|
|
|
|
|
nsInterfaceHashtable<nsStringHashKey, nsIVariant> mData;
|
|
|
|
};
|
|
|
|
|
2014-02-26 05:23:57 +00:00
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|
2007-12-11 08:18:04 +00:00
|
|
|
|
2014-02-26 05:23:57 +00:00
|
|
|
#endif // mozilla_dom_DataContainerEvent_h_
|