Backed out changeset f1afdcec1927 (bug 1025553) for bustage on a CLOSED TREE

This commit is contained in:
Carsten "Tomcat" Book 2014-06-25 14:21:34 +02:00
Родитель 74a5f2859e
Коммит 007d9b5cee
7 изменённых файлов: 9 добавлений и 7 удалений

Просмотреть файл

@ -23,6 +23,7 @@
class gfxContext;
class nsSVGPathDataParser; // IWYU pragma: keep
struct gfxMatrix;
struct nsSVGMark;
namespace mozilla {

Просмотреть файл

@ -18,7 +18,7 @@
class nsSVGElement;
class gfxMatrix;
struct gfxMatrix;
#define MOZ_SVG_LIST_INDEX_BIT_COUNT 31 // supports > 2 billion list items

Просмотреть файл

@ -64,7 +64,7 @@ class Matrix;
}
class gfxMatrix;
struct gfxMatrix;
struct nsSVGEnumMapping;
typedef nsStyledElementNotElementCSSInlineStyle nsSVGElementBase;

Просмотреть файл

@ -9,7 +9,7 @@
#include "mozilla/gfx/2D.h"
#include "SVGGraphicsElement.h"
class gfxMatrix;
struct gfxMatrix;
struct nsSVGMark {
enum Type {

Просмотреть файл

@ -11,7 +11,7 @@
#include <gfxPointH3D.h>
#include <gfxQuad.h>
class gfxMatrix;
struct gfxMatrix;
/**
* This class represents a 3D transformation. The matrix is laid

Просмотреть файл

@ -30,12 +30,12 @@
* \ tx ty 1 / \ 1 /
*
*/
class gfxMatrix {
public:
struct gfxMatrix {
double _11; double _12;
double _21; double _22;
double _31; double _32;
public:
/**
* Initializes this matrix as the identity matrix.
*/

Просмотреть файл

@ -60,7 +60,8 @@
struct nsHTMLReflowState;
class nsHTMLReflowCommand;
class gfxMatrix;
struct gfxMatrix;
class nsIAtom;
class nsPresContext;
class nsIPresShell;