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: */
|
2013-03-11 15:49:48 +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/. */
|
|
|
|
|
2014-02-26 05:23:56 +00:00
|
|
|
#ifndef mozilla_dom_ClipboardEvent_h_
|
|
|
|
#define mozilla_dom_ClipboardEvent_h_
|
2013-03-11 15:49:48 +00:00
|
|
|
|
2013-09-25 11:21:20 +00:00
|
|
|
#include "mozilla/EventForwards.h"
|
2013-03-28 14:11:21 +00:00
|
|
|
#include "mozilla/dom/ClipboardEventBinding.h"
|
2014-03-05 00:37:43 +00:00
|
|
|
#include "mozilla/dom/Event.h"
|
|
|
|
#include "nsIDOMClipboardEvent.h"
|
2013-03-11 15:49:48 +00:00
|
|
|
|
2014-02-26 05:23:56 +00:00
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
2014-02-27 03:23:31 +00:00
|
|
|
class DataTransfer;
|
2014-02-26 05:23:56 +00:00
|
|
|
|
2014-03-05 00:37:43 +00:00
|
|
|
class ClipboardEvent : public Event,
|
2014-02-26 05:23:56 +00:00
|
|
|
public nsIDOMClipboardEvent
|
2013-03-11 15:49:48 +00:00
|
|
|
{
|
|
|
|
public:
|
2014-02-26 05:23:56 +00:00
|
|
|
ClipboardEvent(EventTarget* aOwner,
|
|
|
|
nsPresContext* aPresContext,
|
|
|
|
InternalClipboardEvent* aEvent);
|
2013-03-11 15:49:48 +00:00
|
|
|
|
|
|
|
NS_DECL_ISUPPORTS_INHERITED
|
|
|
|
|
|
|
|
NS_DECL_NSIDOMCLIPBOARDEVENT
|
|
|
|
|
|
|
|
// Forward to base class
|
2014-03-05 00:37:43 +00:00
|
|
|
NS_FORWARD_TO_EVENT
|
2013-03-11 15:49:56 +00:00
|
|
|
|
2015-03-21 16:28:04 +00:00
|
|
|
virtual JSObject* WrapObjectInternal(JSContext* aCx, JS::Handle<JSObject*> aGivenProto) override
|
2013-03-28 14:11:21 +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 ClipboardEventBinding::Wrap(aCx, this, aGivenProto);
|
2013-03-28 14:11:21 +00:00
|
|
|
}
|
|
|
|
|
2014-02-26 05:23:56 +00:00
|
|
|
static already_AddRefed<ClipboardEvent>
|
|
|
|
Constructor(const GlobalObject& aGlobal,
|
2013-03-28 14:11:21 +00:00
|
|
|
const nsAString& aType,
|
2014-02-26 05:23:56 +00:00
|
|
|
const ClipboardEventInit& aParam,
|
|
|
|
ErrorResult& aRv);
|
2013-03-28 14:11:21 +00:00
|
|
|
|
2014-02-27 03:23:31 +00:00
|
|
|
DataTransfer* GetClipboardData();
|
|
|
|
|
|
|
|
void InitClipboardEvent(const nsAString& aType, bool aCanBubble,
|
|
|
|
bool aCancelable,
|
2015-11-13 00:09:42 +00:00
|
|
|
DataTransfer* aClipboardData);
|
2014-07-08 21:23:17 +00:00
|
|
|
|
|
|
|
protected:
|
|
|
|
~ClipboardEvent() {}
|
2013-03-11 15:49:48 +00:00
|
|
|
};
|
|
|
|
|
2014-02-26 05:23:56 +00:00
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|
|
|
|
|
2015-08-12 11:39:31 +00:00
|
|
|
already_AddRefed<mozilla::dom::ClipboardEvent>
|
|
|
|
NS_NewDOMClipboardEvent(mozilla::dom::EventTarget* aOwner,
|
|
|
|
nsPresContext* aPresContext,
|
|
|
|
mozilla::InternalClipboardEvent* aEvent);
|
|
|
|
|
2014-02-26 05:23:56 +00:00
|
|
|
#endif // mozilla_dom_ClipboardEvent_h_
|