2011-09-22 09:17:40 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2015-05-03 19:32:37 +00:00
|
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
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/. */
|
2011-09-22 09:17:40 +00:00
|
|
|
|
2014-02-26 05:23:57 +00:00
|
|
|
#ifndef mozilla_dom_CompositionEvent_h_
|
|
|
|
#define mozilla_dom_CompositionEvent_h_
|
2011-09-22 09:17:40 +00:00
|
|
|
|
2013-03-26 11:45:45 +00:00
|
|
|
#include "mozilla/dom/CompositionEventBinding.h"
|
2014-02-28 14:58:43 +00:00
|
|
|
#include "mozilla/dom/UIEvent.h"
|
2013-10-18 06:10:25 +00:00
|
|
|
#include "mozilla/EventForwards.h"
|
2014-02-28 14:58:43 +00:00
|
|
|
#include "nsIDOMCompositionEvent.h"
|
2011-09-22 09:17:40 +00:00
|
|
|
|
2014-02-26 05:23:57 +00:00
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
|
|
|
|
2014-02-28 14:58:43 +00:00
|
|
|
class CompositionEvent : public UIEvent,
|
2014-02-26 05:23:57 +00:00
|
|
|
public nsIDOMCompositionEvent
|
2011-09-22 09:17:40 +00:00
|
|
|
{
|
|
|
|
public:
|
2014-02-26 05:23:57 +00:00
|
|
|
CompositionEvent(EventTarget* aOwner,
|
|
|
|
nsPresContext* aPresContext,
|
|
|
|
WidgetCompositionEvent* aEvent);
|
2011-09-22 09:17:40 +00:00
|
|
|
|
|
|
|
NS_DECL_ISUPPORTS_INHERITED
|
2014-02-28 14:58:43 +00:00
|
|
|
NS_FORWARD_TO_UIEVENT
|
2011-09-22 09:17:40 +00:00
|
|
|
NS_DECL_NSIDOMCOMPOSITIONEVENT
|
|
|
|
|
2015-03-21 16:28:04 +00:00
|
|
|
virtual JSObject* WrapObjectInternal(JSContext* aCx, JS::Handle<JSObject*> aGivenProto) override
|
2013-03-26 11:45:45 +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 CompositionEventBinding::Wrap(aCx, this, aGivenProto);
|
2013-03-26 11:45:45 +00:00
|
|
|
}
|
|
|
|
|
2014-02-26 05:23:57 +00:00
|
|
|
void InitCompositionEvent(const nsAString& aType,
|
|
|
|
bool aCanBubble,
|
|
|
|
bool aCancelable,
|
|
|
|
nsIDOMWindow* aView,
|
|
|
|
const nsAString& aData,
|
|
|
|
const nsAString& aLocale,
|
|
|
|
ErrorResult& aRv)
|
2013-03-26 11:45:45 +00:00
|
|
|
{
|
|
|
|
aRv = InitCompositionEvent(aType, aCanBubble, aCancelable, aView,
|
|
|
|
aData, aLocale);
|
|
|
|
}
|
|
|
|
|
2011-09-22 09:17:40 +00:00
|
|
|
protected:
|
2014-07-08 21:23:17 +00:00
|
|
|
~CompositionEvent() {}
|
|
|
|
|
2011-09-22 09:17:40 +00:00
|
|
|
nsString mData;
|
|
|
|
nsString mLocale;
|
|
|
|
};
|
|
|
|
|
2014-02-26 05:23:57 +00:00
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|
|
|
|
|
2015-08-12 11:39:31 +00:00
|
|
|
already_AddRefed<mozilla::dom::CompositionEvent>
|
|
|
|
NS_NewDOMCompositionEvent(mozilla::dom::EventTarget* aOwner,
|
|
|
|
nsPresContext* aPresContext,
|
|
|
|
mozilla::WidgetCompositionEvent* aEvent);
|
|
|
|
|
2014-02-26 05:23:57 +00:00
|
|
|
#endif // mozilla_dom_CompositionEvent_h_
|