OLD | NEW |
1 /* | 1 /* |
2 Copyright (C) 1997 Martin Jones (mjones@kde.org) | 2 Copyright (C) 1997 Martin Jones (mjones@kde.org) |
3 (C) 1998 Waldo Bastian (bastian@kde.org) | 3 (C) 1998 Waldo Bastian (bastian@kde.org) |
4 (C) 1998, 1999 Torben Weis (weis@kde.org) | 4 (C) 1998, 1999 Torben Weis (weis@kde.org) |
5 (C) 1999 Lars Knoll (knoll@kde.org) | 5 (C) 1999 Lars Knoll (knoll@kde.org) |
6 (C) 1999 Antti Koivisto (koivisto@kde.org) | 6 (C) 1999 Antti Koivisto (koivisto@kde.org) |
7 Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009 Apple Inc. All rights reserv
ed. | 7 Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009 Apple Inc. All rights reserv
ed. |
8 | 8 |
9 This library is free software; you can redistribute it and/or | 9 This library is free software; you can redistribute it and/or |
10 modify it under the terms of the GNU Library General Public | 10 modify it under the terms of the GNU Library General Public |
(...skipping 454 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
465 | 465 |
466 bool m_wasScrolledByUser; | 466 bool m_wasScrolledByUser; |
467 bool m_inProgrammaticScroll; | 467 bool m_inProgrammaticScroll; |
468 bool m_safeToPropagateScrollToParent; | 468 bool m_safeToPropagateScrollToParent; |
469 | 469 |
470 double m_lastPaintTime; | 470 double m_lastPaintTime; |
471 | 471 |
472 bool m_isTrackingRepaints; // Used for testing. | 472 bool m_isTrackingRepaints; // Used for testing. |
473 Vector<IntRect> m_trackedRepaintRects; | 473 Vector<IntRect> m_trackedRepaintRects; |
474 | 474 |
475 RefPtr<Node> m_nodeToDraw; | 475 RefPtrWillBePersistent<Node> m_nodeToDraw; |
476 PaintBehavior m_paintBehavior; | 476 PaintBehavior m_paintBehavior; |
477 bool m_isPainting; | 477 bool m_isPainting; |
478 | 478 |
479 unsigned m_visuallyNonEmptyCharacterCount; | 479 unsigned m_visuallyNonEmptyCharacterCount; |
480 unsigned m_visuallyNonEmptyPixelCount; | 480 unsigned m_visuallyNonEmptyPixelCount; |
481 bool m_isVisuallyNonEmpty; | 481 bool m_isVisuallyNonEmpty; |
482 bool m_firstVisuallyNonEmptyLayoutCallbackPending; | 482 bool m_firstVisuallyNonEmptyLayoutCallbackPending; |
483 | 483 |
484 RefPtr<Node> m_maintainScrollPositionAnchor; | 484 RefPtrWillBePersistent<Node> m_maintainScrollPositionAnchor; |
485 | 485 |
486 // Renderer to hold our custom scroll corner. | 486 // Renderer to hold our custom scroll corner. |
487 RenderScrollbarPart* m_scrollCorner; | 487 RenderScrollbarPart* m_scrollCorner; |
488 | 488 |
489 // If true, automatically resize the frame view around its content. | 489 // If true, automatically resize the frame view around its content. |
490 bool m_shouldAutoSize; | 490 bool m_shouldAutoSize; |
491 bool m_inAutoSize; | 491 bool m_inAutoSize; |
492 // True if autosize has been run since m_shouldAutoSize was set. | 492 // True if autosize has been run since m_shouldAutoSize was set. |
493 bool m_didRunAutosize; | 493 bool m_didRunAutosize; |
494 // The lower bound on the size when autosizing. | 494 // The lower bound on the size when autosizing. |
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
559 m_view->setCanInvalidatePaintDuringPerformLayout(m_originalValue); | 559 m_view->setCanInvalidatePaintDuringPerformLayout(m_originalValue); |
560 } | 560 } |
561 private: | 561 private: |
562 FrameView* m_view; | 562 FrameView* m_view; |
563 bool m_originalValue; | 563 bool m_originalValue; |
564 }; | 564 }; |
565 | 565 |
566 } // namespace WebCore | 566 } // namespace WebCore |
567 | 567 |
568 #endif // FrameView_h | 568 #endif // FrameView_h |
OLD | NEW |