2002-03-22 23:18:42 +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-03-22 23:18:42 +03:00
|
|
|
|
2006-03-25 08:47:31 +03:00
|
|
|
/* DOM object representing color values in DOM computed style */
|
|
|
|
|
2002-03-22 23:18:42 +03:00
|
|
|
#ifndef nsDOMCSSRGBColor_h__
|
|
|
|
#define nsDOMCSSRGBColor_h__
|
|
|
|
|
2012-12-14 11:51:39 +04:00
|
|
|
#include "mozilla/Attributes.h"
|
2012-12-14 10:40:52 +04:00
|
|
|
#include "nsWrapperCache.h"
|
2002-03-22 23:18:42 +03:00
|
|
|
|
2012-10-20 22:04:36 +04:00
|
|
|
class nsROCSSPrimitiveValue;
|
2002-03-22 23:18:42 +03:00
|
|
|
|
2013-02-14 01:39:23 +04:00
|
|
|
class nsDOMCSSRGBColor : public nsWrapperCache
|
2012-12-14 10:40:52 +04:00
|
|
|
{
|
2002-03-22 23:18:42 +03:00
|
|
|
public:
|
2012-10-20 22:04:36 +04:00
|
|
|
nsDOMCSSRGBColor(nsROCSSPrimitiveValue* aRed,
|
|
|
|
nsROCSSPrimitiveValue* aGreen,
|
|
|
|
nsROCSSPrimitiveValue* aBlue,
|
|
|
|
nsROCSSPrimitiveValue* aAlpha,
|
2011-09-29 10:19:26 +04:00
|
|
|
bool aHasAlpha);
|
2002-03-22 23:18:42 +03:00
|
|
|
|
2013-02-14 01:39:23 +04:00
|
|
|
NS_INLINE_DECL_CYCLE_COLLECTING_NATIVE_REFCOUNTING(nsDOMCSSRGBColor)
|
2007-01-25 05:03:02 +03:00
|
|
|
|
2013-02-14 01:39:23 +04:00
|
|
|
NS_DECL_CYCLE_COLLECTION_SCRIPT_HOLDER_NATIVE_CLASS(nsDOMCSSRGBColor)
|
2012-12-14 10:40:52 +04:00
|
|
|
|
2011-09-29 10:19:26 +04:00
|
|
|
bool HasAlpha() const { return mHasAlpha; }
|
2002-03-22 23:18:42 +03:00
|
|
|
|
2012-10-20 22:04:36 +04:00
|
|
|
// RGBColor webidl interface
|
|
|
|
nsROCSSPrimitiveValue* Red() const
|
|
|
|
{
|
|
|
|
return mRed;
|
|
|
|
}
|
|
|
|
nsROCSSPrimitiveValue* Green() const
|
|
|
|
{
|
|
|
|
return mGreen;
|
|
|
|
}
|
|
|
|
nsROCSSPrimitiveValue* Blue() const
|
|
|
|
{
|
|
|
|
return mBlue;
|
|
|
|
}
|
|
|
|
nsROCSSPrimitiveValue* Alpha() const
|
|
|
|
{
|
|
|
|
return mAlpha;
|
|
|
|
}
|
|
|
|
|
2012-12-14 11:51:39 +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-14 11:51:39 +04:00
|
|
|
|
2002-03-22 23:18:42 +03:00
|
|
|
private:
|
2014-06-24 02:40:01 +04:00
|
|
|
virtual ~nsDOMCSSRGBColor(void);
|
|
|
|
|
2015-10-18 08:24:48 +03:00
|
|
|
RefPtr<nsROCSSPrimitiveValue> mRed;
|
|
|
|
RefPtr<nsROCSSPrimitiveValue> mGreen;
|
|
|
|
RefPtr<nsROCSSPrimitiveValue> mBlue;
|
|
|
|
RefPtr<nsROCSSPrimitiveValue> mAlpha;
|
2011-09-29 10:19:26 +04:00
|
|
|
bool mHasAlpha;
|
2002-03-22 23:18:42 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // nsDOMCSSRGBColor_h__
|