2015-05-03 19:32:37 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* 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/. */
|
2010-07-31 07:02:52 +00:00
|
|
|
|
2014-02-28 14:58:43 +00:00
|
|
|
#ifndef mozilla_dom_TimeEvent_h_
|
|
|
|
#define mozilla_dom_TimeEvent_h_
|
2010-07-31 07:02:52 +00:00
|
|
|
|
2014-03-05 00:37:43 +00:00
|
|
|
#include "mozilla/dom/Event.h"
|
2013-05-24 22:55:19 +00:00
|
|
|
#include "mozilla/dom/TimeEventBinding.h"
|
2014-03-05 00:37:43 +00:00
|
|
|
#include "nsIDOMTimeEvent.h"
|
2010-07-31 07:02:52 +00:00
|
|
|
|
2016-01-30 17:05:36 +00:00
|
|
|
class nsGlobalWindow;
|
|
|
|
|
2014-02-28 14:58:43 +00:00
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
|
|
|
|
2015-03-21 16:28:04 +00:00
|
|
|
class TimeEvent final : public Event,
|
2015-03-27 18:52:19 +00:00
|
|
|
public nsIDOMTimeEvent
|
2010-07-31 07:02:52 +00:00
|
|
|
{
|
|
|
|
public:
|
2014-02-28 14:58:43 +00:00
|
|
|
TimeEvent(EventTarget* aOwner,
|
|
|
|
nsPresContext* aPresContext,
|
2014-07-30 17:16:57 +00:00
|
|
|
InternalSMILTimeEvent* aEvent);
|
2013-05-24 22:55:19 +00:00
|
|
|
|
2010-07-31 07:02:52 +00:00
|
|
|
// nsISupports interface:
|
|
|
|
NS_DECL_ISUPPORTS_INHERITED
|
2014-03-05 00:37:43 +00:00
|
|
|
NS_DECL_CYCLE_COLLECTION_CLASS_INHERITED(TimeEvent, Event)
|
2010-07-31 07:02:52 +00:00
|
|
|
|
|
|
|
// nsIDOMTimeEvent interface:
|
|
|
|
NS_DECL_NSIDOMTIMEEVENT
|
|
|
|
|
|
|
|
// Forward to base class
|
2014-03-05 00:37:43 +00:00
|
|
|
NS_FORWARD_TO_EVENT
|
2010-07-31 07:02:52 +00:00
|
|
|
|
2015-03-21 16:28:04 +00:00
|
|
|
virtual JSObject* WrapObjectInternal(JSContext* aCx, JS::Handle<JSObject*> aGivenProto) override
|
2013-05-24 22:55:19 +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 TimeEventBinding::Wrap(aCx, this, aGivenProto);
|
2013-05-24 22:55:19 +00:00
|
|
|
}
|
|
|
|
|
2016-01-30 17:05:36 +00:00
|
|
|
void InitTimeEvent(const nsAString& aType, nsGlobalWindow* aView,
|
|
|
|
int32_t aDetail);
|
|
|
|
|
|
|
|
|
2013-05-24 22:55:19 +00:00
|
|
|
int32_t Detail() const
|
|
|
|
{
|
|
|
|
return mDetail;
|
|
|
|
}
|
|
|
|
|
2016-01-30 17:05:36 +00:00
|
|
|
nsPIDOMWindowOuter* GetView() const
|
2013-05-24 22:55:19 +00:00
|
|
|
{
|
|
|
|
return mView;
|
|
|
|
}
|
|
|
|
|
2010-07-31 07:02:52 +00:00
|
|
|
private:
|
2014-07-08 21:23:17 +00:00
|
|
|
~TimeEvent() {}
|
|
|
|
|
2016-01-30 17:05:36 +00:00
|
|
|
nsCOMPtr<nsPIDOMWindowOuter> mView;
|
2012-08-22 15:56:38 +00:00
|
|
|
int32_t mDetail;
|
2010-07-31 07:02:52 +00:00
|
|
|
};
|
|
|
|
|
2014-02-28 14:58:43 +00:00
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|
|
|
|
|
2015-08-12 11:39:31 +00:00
|
|
|
already_AddRefed<mozilla::dom::TimeEvent>
|
|
|
|
NS_NewDOMTimeEvent(mozilla::dom::EventTarget* aOwner,
|
|
|
|
nsPresContext* aPresContext,
|
|
|
|
mozilla::InternalSMILTimeEvent* aEvent);
|
|
|
|
|
2014-02-28 14:58:43 +00:00
|
|
|
#endif // mozilla_dom_TimeEvent_h_
|