~ubuntu-branches/ubuntu/lucid/webkit/lucid-updates

« back to all changes in this revision

Viewing changes to WebCore/rendering/RenderLayer.h

  • Committer: Bazaar Package Importer
  • Author(s): Gustavo Noronha Silva
  • Date: 2010-01-06 21:25:06 UTC
  • mfrom: (1.2.6 upstream) (4.3.7 sid)
  • Revision ID: james.westby@ubuntu.com-20100106212506-gd0czn4zrwf1j19l
* New upstream release
- adds basic Content-Encoding support, thanks to soup
  (Closes: #529271)
- fixes over-advertising content types as supported by
  the media player (Closes: #559420)
* debian/control:
- updated libsoup build requirement (>= 2.28.2)
* debian/libwebkit-1.0-2.symbols:
- updated with new symbols
* debian/copyright:
- updated information since 1.1.17
* Imported patch from https://bugs.webkit.org/show_bug.cgi?id=30623
- I am shipping this patch because I believe it is correct, it is the
  way to go, it fixes a race, and it needs testing.

Show diffs side-by-side

added added

removed removed

Lines of Context:
262
262
    int verticalScrollbarWidth() const;
263
263
    int horizontalScrollbarHeight() const;
264
264
 
 
265
    bool hasOverflowControls() const;
265
266
    void positionOverflowControls(int tx, int ty);
266
267
    bool isPointInResizeControl(const IntPoint& absolutePoint) const;
267
268
    bool hitTestOverflowControls(HitTestResult&, const IntPoint& localPoint);
312
313
    void clearClipRectsIncludingDescendants();
313
314
    void clearClipRects();
314
315
 
 
316
    void addBlockSelectionGapsBounds(const IntRect&);
 
317
    void clearBlockSelectionGapsBounds();
 
318
    void repaintBlockSelectionGaps();
 
319
 
315
320
    // Get the enclosing stacking context for this layer.  A stacking context is a layer
316
321
    // that has a non-auto z-index.
317
322
    RenderLayer* stackingContext() const;
648
653
    RenderScrollbarPart* m_scrollCorner;
649
654
    RenderScrollbarPart* m_resizer;
650
655
 
 
656
private:
 
657
    IntRect m_blockSelectionGapsBounds;
 
658
 
651
659
#if USE(ACCELERATED_COMPOSITING)
652
660
    OwnPtr<RenderLayerBacking> m_backing;
653
661
#endif