2013-04-19 08:49:21 +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_TextMetrics_h
|
|
|
|
#define mozilla_dom_TextMetrics_h
|
|
|
|
|
2013-04-19 08:49:22 +00:00
|
|
|
#include "mozilla/dom/CanvasRenderingContext2DBinding.h"
|
|
|
|
#include "mozilla/dom/NonRefcountedDOMObject.h"
|
2013-04-19 08:49:21 +00:00
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
|
|
|
|
2015-03-21 16:28:04 +00:00
|
|
|
class TextMetrics final : public NonRefcountedDOMObject
|
2013-04-19 08:49:21 +00:00
|
|
|
{
|
|
|
|
public:
|
2014-09-01 22:26:43 +00:00
|
|
|
explicit TextMetrics(float aValue) : width(aValue)
|
2013-04-19 08:49:22 +00:00
|
|
|
{
|
|
|
|
MOZ_COUNT_CTOR(TextMetrics);
|
|
|
|
}
|
2013-04-19 08:49:21 +00:00
|
|
|
|
2013-04-19 08:49:22 +00:00
|
|
|
~TextMetrics()
|
|
|
|
{
|
|
|
|
MOZ_COUNT_DTOR(TextMetrics);
|
|
|
|
}
|
2013-04-19 08:49:21 +00:00
|
|
|
|
2013-04-19 08:49:22 +00:00
|
|
|
float Width() const
|
2013-04-19 08:49:21 +00:00
|
|
|
{
|
2013-04-19 08:49:22 +00:00
|
|
|
return width;
|
2013-04-19 08:49:21 +00:00
|
|
|
}
|
|
|
|
|
Bug 1117172 part 2. Change the non-wrappercached WrapObject methods to allow passing in aGivenProto. r=peterv
The only manual changes here are to BindingUtils.h, Codegen.py, and
StructuredClone.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/WrapObject\((JSContext *\* *(?:aCx|cx)),(\s*)(JS::MutableHandle<JSObject\*> aReflector)/WrapObject(\1,\2JS::Handle<JSObject*> aGivenProto,\2\3/g'
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(Binding(?:_workers)?::Wrap\((?:aCx|cx)), this, aReflector/\1, this, aGivenProto, aReflector/'
2015-03-19 14:13:32 +00:00
|
|
|
bool WrapObject(JSContext* aCx, JS::Handle<JSObject*> aGivenProto, JS::MutableHandle<JSObject*> aReflector)
|
2013-04-19 08:49:22 +00:00
|
|
|
{
|
Bug 1117172 part 2. Change the non-wrappercached WrapObject methods to allow passing in aGivenProto. r=peterv
The only manual changes here are to BindingUtils.h, Codegen.py, and
StructuredClone.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/WrapObject\((JSContext *\* *(?:aCx|cx)),(\s*)(JS::MutableHandle<JSObject\*> aReflector)/WrapObject(\1,\2JS::Handle<JSObject*> aGivenProto,\2\3/g'
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(Binding(?:_workers)?::Wrap\((?:aCx|cx)), this, aReflector/\1, this, aGivenProto, aReflector/'
2015-03-19 14:13:32 +00:00
|
|
|
return TextMetricsBinding::Wrap(aCx, this, aGivenProto, aReflector);
|
2013-04-19 08:49:22 +00:00
|
|
|
}
|
2013-04-19 08:49:21 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
float width;
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|
|
|
|
|
|
|
|
#endif // mozilla_dom_TextMetrics_h
|