~ubuntu-branches/ubuntu/karmic/webkit/karmic-proposed

« back to all changes in this revision

Viewing changes to WebCore/rendering/RenderSVGInlineText.h

  • Committer: Bazaar Package Importer
  • Author(s): Gustavo Noronha Silva
  • Date: 2009-05-15 18:30:58 UTC
  • mfrom: (1.1.8 upstream)
  • Revision ID: james.westby@ubuntu.com-20090515183058-50q5exjo9b1kxy9s
Tags: 1.1.7-1
* New upstream release
* debian/libwebkit-1.0-2.symbols:
- updated with the new symbols in 1.1.7
* debian/libwebkit-dev.install, debian/libwebkit-dev.links,
  debian/rules:
- Build, and ship gtk-doc documentation (Closes: #526683)
* debian/copyright:
- updated.

Show diffs side-by-side

added added

removed removed

Lines of Context:
37
37
        
38
38
    virtual void styleDidChange(StyleDifference, const RenderStyle*);
39
39
 
40
 
    virtual void absoluteRects(Vector<IntRect>& rects, int tx, int ty, bool topLevel = true);
41
 
    virtual void absoluteQuads(Vector<FloatQuad>&, bool topLevel = true);
 
40
    virtual void absoluteRects(Vector<IntRect>& rects, int tx, int ty);
 
41
    virtual void absoluteQuads(Vector<FloatQuad>&);
42
42
 
43
43
    virtual bool requiresLayer() const { return false; }
44
44
    virtual IntRect selectionRectForRepaint(RenderBoxModelObject* repaintContainer, bool clipToVisibleContent = true);
52
52
private:
53
53
    virtual InlineTextBox* createTextBox();
54
54
    IntRect computeRepaintRectForRange(RenderBoxModelObject* repaintContainer, int startPos, int endPos);
 
55
    FloatQuad computeRepaintQuadForRange(RenderBoxModelObject* repaintContainer, int startPos, int endPos);
55
56
};
56
57
 
57
58
}