2002-01-11 03:09:01 +03: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/. */
|
2002-01-11 03:09:01 +03:00
|
|
|
|
2006-03-25 08:47:31 +03:00
|
|
|
/* DOM object representing rectangle values in DOM computed style */
|
|
|
|
|
|
|
|
#ifndef nsDOMCSSRect_h_
|
|
|
|
#define nsDOMCSSRect_h_
|
2002-01-11 03:09:01 +03:00
|
|
|
|
2012-12-26 16:26:36 +04:00
|
|
|
#include "mozilla/Attributes.h"
|
2002-01-11 03:09:01 +03:00
|
|
|
#include "nsIDOMRect.h"
|
2012-12-26 06:51:33 +04:00
|
|
|
#include "nsCycleCollectionParticipant.h"
|
|
|
|
#include "nsWrapperCache.h"
|
2012-12-26 06:48:28 +04:00
|
|
|
|
|
|
|
class nsROCSSPrimitiveValue;
|
2002-01-11 03:09:01 +03:00
|
|
|
|
2015-03-21 21:35:18 +03:00
|
|
|
class nsDOMCSSRect final : public nsIDOMRect,
|
|
|
|
public nsWrapperCache
|
2012-12-26 06:51:33 +04:00
|
|
|
{
|
2002-01-11 03:09:01 +03:00
|
|
|
public:
|
2012-12-26 06:48:28 +04:00
|
|
|
nsDOMCSSRect(nsROCSSPrimitiveValue* aTop,
|
|
|
|
nsROCSSPrimitiveValue* aRight,
|
|
|
|
nsROCSSPrimitiveValue* aBottom,
|
|
|
|
nsROCSSPrimitiveValue* aLeft);
|
2002-01-11 03:09:01 +03:00
|
|
|
|
2012-12-26 06:51:33 +04:00
|
|
|
NS_DECL_CYCLE_COLLECTING_ISUPPORTS
|
2002-01-11 03:09:01 +03:00
|
|
|
NS_DECL_NSIDOMRECT
|
|
|
|
|
2012-12-26 06:51:33 +04:00
|
|
|
NS_DECL_CYCLE_COLLECTION_SCRIPT_HOLDER_CLASS(nsDOMCSSRect)
|
|
|
|
|
2012-12-26 07:12:15 +04:00
|
|
|
nsROCSSPrimitiveValue* Top() const { return mTop; }
|
|
|
|
nsROCSSPrimitiveValue* Right() const { return mRight; }
|
|
|
|
nsROCSSPrimitiveValue* Bottom() const { return mBottom; }
|
|
|
|
nsROCSSPrimitiveValue* Left() const { return mLeft; }
|
|
|
|
|
2012-12-26 16:26:36 +04:00
|
|
|
nsISupports* GetParentObject() const { return nullptr; }
|
|
|
|
|
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* WrapObject(JSContext* cx, JS::Handle<JSObject*> aGivenProto)
|
2015-03-21 19:28:04 +03:00
|
|
|
override final;
|
2012-12-26 16:26:36 +04:00
|
|
|
|
2014-06-24 02:40:01 +04:00
|
|
|
protected:
|
|
|
|
virtual ~nsDOMCSSRect(void);
|
|
|
|
|
2002-01-11 03:09:01 +03:00
|
|
|
private:
|
2015-10-18 08:24:48 +03:00
|
|
|
RefPtr<nsROCSSPrimitiveValue> mTop;
|
|
|
|
RefPtr<nsROCSSPrimitiveValue> mRight;
|
|
|
|
RefPtr<nsROCSSPrimitiveValue> mBottom;
|
|
|
|
RefPtr<nsROCSSPrimitiveValue> mLeft;
|
2002-01-11 03:09:01 +03:00
|
|
|
};
|
|
|
|
|
2006-03-25 08:47:31 +03:00
|
|
|
#endif /* nsDOMCSSRect_h_ */
|