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

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

Issue 2415013002: Don't throttle disposed FrameViews (Closed)
Patch Set: Created 4 years, 2 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
« no previous file with comments | « no previous file | third_party/WebKit/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 7 Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009 Apple Inc. All rights
8 reserved. 8 reserved.
9 9
10 This library is free software; you can redistribute it and/or 10 This library is free software; you can redistribute it and/or
(...skipping 971 matching lines...) Expand 10 before | Expand all | Expand 10 after
982 Timer<FrameView> m_didScrollTimer; 982 Timer<FrameView> m_didScrollTimer;
983 983
984 Vector<IntRect> m_tickmarks; 984 Vector<IntRect> m_tickmarks;
985 985
986 float m_topControlsViewportAdjustment; 986 float m_topControlsViewportAdjustment;
987 987
988 bool m_needsUpdateWidgetGeometries; 988 bool m_needsUpdateWidgetGeometries;
989 bool m_needsUpdateViewportIntersection; 989 bool m_needsUpdateViewportIntersection;
990 bool m_needsUpdateViewportIntersectionInSubtree; 990 bool m_needsUpdateViewportIntersectionInSubtree;
991 991
992 #if ENABLE(ASSERT)
993 // Verified when finalizing. 992 // Verified when finalizing.
994 bool m_hasBeenDisposed; 993 bool m_hasBeenDisposed;
995 #endif
996 994
997 Member<Scrollbar> m_horizontalScrollbar; 995 Member<Scrollbar> m_horizontalScrollbar;
998 Member<Scrollbar> m_verticalScrollbar; 996 Member<Scrollbar> m_verticalScrollbar;
999 ScrollbarMode m_horizontalScrollbarMode; 997 ScrollbarMode m_horizontalScrollbarMode;
1000 ScrollbarMode m_verticalScrollbarMode; 998 ScrollbarMode m_verticalScrollbarMode;
1001 999
1002 bool m_horizontalScrollbarLock; 1000 bool m_horizontalScrollbarLock;
1003 bool m_verticalScrollbarLock; 1001 bool m_verticalScrollbarLock;
1004 1002
1005 ChildrenWidgetSet m_children; 1003 ChildrenWidgetSet m_children;
(...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after
1107 widget.isFrameView()); 1105 widget.isFrameView());
1108 DEFINE_TYPE_CASTS(FrameView, 1106 DEFINE_TYPE_CASTS(FrameView,
1109 ScrollableArea, 1107 ScrollableArea,
1110 scrollableArea, 1108 scrollableArea,
1111 scrollableArea->isFrameView(), 1109 scrollableArea->isFrameView(),
1112 scrollableArea.isFrameView()); 1110 scrollableArea.isFrameView());
1113 1111
1114 } // namespace blink 1112 } // namespace blink
1115 1113
1116 #endif // FrameView_h 1114 #endif // FrameView_h
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/frame/FrameView.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698