summaryrefslogtreecommitdiffstats
path: root/WebCore/rendering/RenderTableCell.h
diff options
context:
space:
mode:
authorThe Android Open Source Project <initial-contribution@android.com>2008-12-17 18:05:15 -0800
committerThe Android Open Source Project <initial-contribution@android.com>2008-12-17 18:05:15 -0800
commit1cbdecfa9fc428ac2d8aca0fa91c9580b3d57353 (patch)
tree4457a7306ea5acb43fe05bfe0973b1f7faf97ba2 /WebCore/rendering/RenderTableCell.h
parent9364f22aed35e1a1e9d07c121510f80be3ab0502 (diff)
downloadexternal_webkit-1cbdecfa9fc428ac2d8aca0fa91c9580b3d57353.zip
external_webkit-1cbdecfa9fc428ac2d8aca0fa91c9580b3d57353.tar.gz
external_webkit-1cbdecfa9fc428ac2d8aca0fa91c9580b3d57353.tar.bz2
Code drop from //branches/cupcake/...@124589
Diffstat (limited to 'WebCore/rendering/RenderTableCell.h')
-rw-r--r--WebCore/rendering/RenderTableCell.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/WebCore/rendering/RenderTableCell.h b/WebCore/rendering/RenderTableCell.h
index b691ff8..eb093fb 100644
--- a/WebCore/rendering/RenderTableCell.h
+++ b/WebCore/rendering/RenderTableCell.h
@@ -64,7 +64,6 @@ public:
virtual void calcPrefWidths();
virtual void calcWidth();
virtual void setWidth(int);
- virtual void setStyle(RenderStyle*);
#ifdef ANDROID_LAYOUT
// RenderTableSection needs to access this in setCellWidths()
@@ -98,6 +97,7 @@ public:
virtual void paint(PaintInfo&, int tx, int ty);
virtual void paintBoxDecorations(PaintInfo&, int tx, int ty);
+ virtual void paintMask(PaintInfo& paintInfo, int tx, int ty);
void paintCollapsedBorder(GraphicsContext*, int x, int y, int w, int h);
void paintBackgroundsBehindCell(PaintInfo&, int tx, int ty, RenderObject* backgroundObject);
@@ -108,7 +108,7 @@ public:
virtual void computeAbsoluteRepaintRect(IntRect&, bool fixed = false);
virtual bool absolutePosition(int& x, int& y, bool fixed = false) const;
- virtual short baselinePosition(bool firstLine = false, bool isRootLineBox = false) const;
+ virtual int baselinePosition(bool firstLine = false, bool isRootLineBox = false) const;
void setCellTopExtra(int p) { m_topExtra = p; }
void setCellBottomExtra(int p) { m_bottomExtra = p; }
@@ -116,11 +116,11 @@ public:
virtual int borderTopExtra() const { return m_topExtra; }
virtual int borderBottomExtra() const { return m_bottomExtra; }
-#ifndef NDEBUG
- virtual void dump(TextStream*, DeprecatedString ind = "") const;
-#endif
-
protected:
+ virtual void styleWillChange(RenderStyle::Diff, const RenderStyle* newStyle);
+ virtual void styleDidChange(RenderStyle::Diff, const RenderStyle* oldStyle);
+
+private:
int m_row;
int m_column;
int m_rowSpan;