Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(4)

Side by Side Diff: Source/core/frame/FrameView.h

Issue 310353003: Oilpan: Replace RefPtrs and raw pointers to Node and its subclasses in core/frame and core/page wit… (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | Source/core/frame/FrameView.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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
OLDNEW
« no previous file with comments | « no previous file | Source/core/frame/FrameView.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698