2008-09-18 13:47:21 +04:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2012-05-21 15:12:37 +04: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/. */
|
2008-09-18 13:47:21 +04:00
|
|
|
|
2014-02-28 18:58:43 +04:00
|
|
|
#ifndef mozilla_dom_NotifyPaintEvent_h_
|
|
|
|
#define mozilla_dom_NotifyPaintEvent_h_
|
2008-09-18 13:47:21 +04:00
|
|
|
|
2013-05-30 00:43:41 +04:00
|
|
|
#include "mozilla/Attributes.h"
|
2014-03-05 04:37:43 +04:00
|
|
|
#include "mozilla/dom/Event.h"
|
|
|
|
#include "mozilla/dom/NotifyPaintEventBinding.h"
|
2008-09-18 13:47:21 +04:00
|
|
|
#include "nsIDOMNotifyPaintEvent.h"
|
2009-09-04 08:49:18 +04:00
|
|
|
#include "nsPresContext.h"
|
|
|
|
|
2013-09-20 14:21:03 +04:00
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
2014-02-28 18:58:43 +04:00
|
|
|
|
2013-09-20 14:21:03 +04:00
|
|
|
class DOMRect;
|
|
|
|
class DOMRectList;
|
2014-04-03 08:18:37 +04:00
|
|
|
class PaintRequestList;
|
2008-09-18 13:47:21 +04:00
|
|
|
|
2014-03-05 04:37:43 +04:00
|
|
|
class NotifyPaintEvent : public Event,
|
2014-02-28 18:58:43 +04:00
|
|
|
public nsIDOMNotifyPaintEvent
|
2008-09-18 13:47:21 +04:00
|
|
|
{
|
2013-09-20 14:21:03 +04:00
|
|
|
|
2008-09-18 13:47:21 +04:00
|
|
|
public:
|
2014-02-28 18:58:43 +04:00
|
|
|
NotifyPaintEvent(EventTarget* aOwner,
|
|
|
|
nsPresContext* aPresContext,
|
|
|
|
WidgetEvent* aEvent,
|
|
|
|
uint32_t aEventType,
|
|
|
|
nsInvalidateRequestList* aInvalidateRequests);
|
2008-09-18 13:47:21 +04:00
|
|
|
|
|
|
|
NS_DECL_ISUPPORTS_INHERITED
|
|
|
|
|
|
|
|
NS_DECL_NSIDOMNOTIFYPAINTEVENT
|
|
|
|
|
|
|
|
// Forward to base class
|
2014-03-05 04:37:43 +04:00
|
|
|
NS_FORWARD_TO_EVENT_NO_SERIALIZATION_NO_DUPLICATION
|
2013-05-30 00:43:41 +04:00
|
|
|
NS_IMETHOD DuplicatePrivateData() MOZ_OVERRIDE
|
2012-06-11 03:44:50 +04:00
|
|
|
{
|
2014-03-05 04:37:43 +04:00
|
|
|
return Event::DuplicatePrivateData();
|
2012-06-11 03:44:50 +04:00
|
|
|
}
|
2013-05-30 00:43:41 +04:00
|
|
|
NS_IMETHOD_(void) Serialize(IPC::Message* aMsg, bool aSerializeInterfaceType) MOZ_OVERRIDE;
|
|
|
|
NS_IMETHOD_(bool) Deserialize(const IPC::Message* aMsg, void** aIter) MOZ_OVERRIDE;
|
2012-12-22 12:16:55 +04: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 17:13:33 +03:00
|
|
|
virtual JSObject* WrapObjectInternal(JSContext* aCx, JS::Handle<JSObject*> aGivenProto) MOZ_OVERRIDE
|
2013-04-16 00:27:37 +04: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 17:13:33 +03:00
|
|
|
return NotifyPaintEventBinding::Wrap(aCx, this, aGivenProto);
|
2013-04-16 00:27:37 +04:00
|
|
|
}
|
2012-12-22 12:16:55 +04:00
|
|
|
|
2013-09-20 14:21:03 +04:00
|
|
|
already_AddRefed<DOMRectList> ClientRects();
|
2013-04-16 00:27:37 +04:00
|
|
|
|
2013-09-20 14:21:03 +04:00
|
|
|
already_AddRefed<DOMRect> BoundingClientRect();
|
2013-04-16 00:27:37 +04:00
|
|
|
|
2014-04-03 08:18:37 +04:00
|
|
|
already_AddRefed<PaintRequestList> PaintRequests();
|
2014-07-09 01:23:17 +04:00
|
|
|
|
|
|
|
protected:
|
|
|
|
~NotifyPaintEvent() {}
|
|
|
|
|
2008-09-18 13:47:21 +04:00
|
|
|
private:
|
|
|
|
nsRegion GetRegion();
|
2009-06-23 13:09:05 +04:00
|
|
|
|
2009-09-04 08:49:18 +04:00
|
|
|
nsTArray<nsInvalidateRequestList::Request> mInvalidateRequests;
|
2008-09-18 13:47:21 +04:00
|
|
|
};
|
|
|
|
|
2014-02-28 18:58:43 +04:00
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|
|
|
|
|
|
|
|
#endif // mozilla_dom_NotifyPaintEvent_h_
|