author | L. David Baron <dbaron@dbaron.org> |
Mon, 03 Mar 2014 00:54:39 -0800 | |
changeset 189654 | 31b472f3e282a08ca53db8eaf137c4924cd1dc69 |
parent 189653 | 8a72d26209182966111fcc0a6a721c65ac3160ec |
child 189655 | ba9b13653eee2d4f1e3da156420eca6643088628 |
push id | 474 |
push user | asasaki@mozilla.com |
push date | Mon, 02 Jun 2014 21:01:02 +0000 |
treeherder | mozilla-release@967f4cf1b31c [default view] [failures only] |
perfherder | [talos] [build metrics] [platform microbench] (compared to previous push) |
reviewers | jfkthame |
bugs | 978603, 435138 |
milestone | 30.0a1 |
first release with | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
last release without | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
--- a/gfx/thebes/gfxFont.h +++ b/gfx/thebes/gfxFont.h @@ -1298,16 +1298,21 @@ private: } nsTArray<uintptr_t> mBlocks; }; GlyphWidths mContainedGlyphWidths; nsTHashtable<HashEntry> mTightGlyphExtents; int32_t mAppUnitsPerDevUnit; + +private: + // not implemented: + gfxGlyphExtents(const gfxGlyphExtents& aOther) MOZ_DELETE; + gfxGlyphExtents& operator=(const gfxGlyphExtents& aOther) MOZ_DELETE; }; /** * gfxFontShaper * * This class implements text shaping (character to glyph mapping and * glyph layout). There is a gfxFontShaper subclass for each text layout * technology (uniscribe, core text, harfbuzz,....) we support.