2013-03-26 15:53:13 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* 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/. */
|
|
|
|
|
|
|
|
#ifndef mozilla_dom_SVGIRect_h
|
|
|
|
#define mozilla_dom_SVGIRect_h
|
|
|
|
|
|
|
|
#include "nsCycleCollectionParticipant.h"
|
|
|
|
#include "mozilla/dom/SVGRectBinding.h"
|
|
|
|
#include "mozilla/Attributes.h"
|
|
|
|
#include "mozilla/ErrorResult.h"
|
2013-05-09 17:42:12 +00:00
|
|
|
#include "nsWrapperCache.h"
|
|
|
|
|
2014-08-18 14:44:50 +00:00
|
|
|
class nsIContent;
|
2013-03-26 15:53:13 +00:00
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
|
|
|
|
2013-05-09 17:42:12 +00:00
|
|
|
class SVGIRect : public nsISupports,
|
2013-05-09 17:42:12 +00:00
|
|
|
public nsWrapperCache
|
2013-03-26 15:53:13 +00:00
|
|
|
{
|
|
|
|
public:
|
2013-05-09 17:42:12 +00:00
|
|
|
virtual ~SVGIRect()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2015-03-21 16:28:04 +00:00
|
|
|
JSObject* WrapObject(JSContext* aCx, JS::Handle<JSObject*> aGivenProto) override
|
2013-03-26 15:53:13 +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 SVGRectBinding::Wrap(aCx, this, aGivenProto);
|
2013-03-26 15:53:13 +00:00
|
|
|
}
|
|
|
|
|
2013-05-16 18:06:21 +00:00
|
|
|
virtual nsIContent* GetParentObject() const = 0;
|
2013-05-09 17:42:12 +00:00
|
|
|
|
2013-03-26 15:53:13 +00:00
|
|
|
virtual float X() const = 0;
|
|
|
|
|
|
|
|
virtual void SetX(float aX, ErrorResult& aRv) = 0;
|
|
|
|
|
|
|
|
virtual float Y() const = 0;
|
|
|
|
|
|
|
|
virtual void SetY(float aY, ErrorResult& aRv) = 0;
|
|
|
|
|
|
|
|
virtual float Width() const = 0;
|
|
|
|
|
|
|
|
virtual void SetWidth(float aWidth, ErrorResult& aRv) = 0;
|
|
|
|
|
|
|
|
virtual float Height() const = 0;
|
|
|
|
|
|
|
|
virtual void SetHeight(float aHeight, ErrorResult& aRv) = 0;
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|
|
|
|
|
|
|
|
#endif //mozilla_dom_SVGIRect_h
|
|
|
|
|