summaryrefslogtreecommitdiffstats
path: root/WebCore/rendering/RenderForeignObject.h
diff options
context:
space:
mode:
authorThe Android Open Source Project <initial-contribution@android.com>2009-03-05 14:34:32 -0800
committerThe Android Open Source Project <initial-contribution@android.com>2009-03-05 14:34:32 -0800
commit635860845790a19bf50bbc51ba8fb66a96dde068 (patch)
treeef6ad9ff73a5b57f65249d4232a202fa77e6a140 /WebCore/rendering/RenderForeignObject.h
parent8e35f3cfc7fba1d1c829dc557ebad6409cbe16a2 (diff)
downloadexternal_webkit-635860845790a19bf50bbc51ba8fb66a96dde068.zip
external_webkit-635860845790a19bf50bbc51ba8fb66a96dde068.tar.gz
external_webkit-635860845790a19bf50bbc51ba8fb66a96dde068.tar.bz2
auto import from //depot/cupcake/@136594
Diffstat (limited to 'WebCore/rendering/RenderForeignObject.h')
-rw-r--r--WebCore/rendering/RenderForeignObject.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/WebCore/rendering/RenderForeignObject.h b/WebCore/rendering/RenderForeignObject.h
index b624683..28f4ddb 100644
--- a/WebCore/rendering/RenderForeignObject.h
+++ b/WebCore/rendering/RenderForeignObject.h
@@ -24,7 +24,7 @@
#define RenderForeignObject_h
#if ENABLE(SVG) && ENABLE(SVG_FOREIGN_OBJECT)
-#include "AffineTransform.h"
+#include "TransformationMatrix.h"
#include "RenderSVGBlock.h"
namespace WebCore {
@@ -39,19 +39,19 @@ public:
virtual void paint(PaintInfo&, int parentX, int parentY);
- virtual AffineTransform localTransform() const { return m_localTransform; }
+ virtual TransformationMatrix localTransform() const { return m_localTransform; }
virtual bool calculateLocalTransform();
- virtual void computeAbsoluteRepaintRect(IntRect&, bool fixed);
- virtual bool requiresLayer();
+ virtual void computeRectForRepaint(IntRect&, RenderBox* repaintContainer, bool fixed = false);
+ virtual bool requiresLayer() const { return false; }
virtual void layout();
virtual bool nodeAtPoint(const HitTestRequest&, HitTestResult&, int x, int y, int tx, int ty, HitTestAction);
private:
- AffineTransform translationForAttributes();
+ TransformationMatrix translationForAttributes();
- AffineTransform m_localTransform;
+ TransformationMatrix m_localTransform;
IntRect m_absoluteBounds;
};