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

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

Issue 2705403003: Convert FrameView timer to UnspecedTimer frame-specific timer. (Closed)
Patch Set: Created 3 years, 10 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 1086 matching lines...) Expand 10 before | Expand all | Expand 10 after
1097 ViewportConstrainedObjectSet m_backgroundAttachmentFixedObjects; 1097 ViewportConstrainedObjectSet m_backgroundAttachmentFixedObjects;
1098 Member<FrameViewAutoSizeInfo> m_autoSizeInfo; 1098 Member<FrameViewAutoSizeInfo> m_autoSizeInfo;
1099 1099
1100 IntSize m_inputEventsOffsetForEmulation; 1100 IntSize m_inputEventsOffsetForEmulation;
1101 float m_inputEventsScaleFactorForEmulation; 1101 float m_inputEventsScaleFactorForEmulation;
1102 1102
1103 IntSize m_layoutSize; 1103 IntSize m_layoutSize;
1104 IntSize m_initialViewportSize; 1104 IntSize m_initialViewportSize;
1105 bool m_layoutSizeFixedToFrameSize; 1105 bool m_layoutSizeFixedToFrameSize;
1106 1106
1107 Timer<FrameView> m_didScrollTimer; 1107 TaskRunnerTimer<FrameView> m_didScrollTimer;
1108 1108
1109 Vector<IntRect> m_tickmarks; 1109 Vector<IntRect> m_tickmarks;
1110 1110
1111 bool m_needsUpdateWidgetGeometries; 1111 bool m_needsUpdateWidgetGeometries;
1112 1112
1113 #if DCHECK_IS_ON() 1113 #if DCHECK_IS_ON()
1114 // Verified when finalizing. 1114 // Verified when finalizing.
1115 bool m_hasBeenDisposed = false; 1115 bool m_hasBeenDisposed = false;
1116 #endif 1116 #endif
1117 1117
(...skipping 133 matching lines...) Expand 10 before | Expand all | Expand 10 after
1251 widget.isFrameView()); 1251 widget.isFrameView());
1252 DEFINE_TYPE_CASTS(FrameView, 1252 DEFINE_TYPE_CASTS(FrameView,
1253 ScrollableArea, 1253 ScrollableArea,
1254 scrollableArea, 1254 scrollableArea,
1255 scrollableArea->isFrameView(), 1255 scrollableArea->isFrameView(),
1256 scrollableArea.isFrameView()); 1256 scrollableArea.isFrameView());
1257 1257
1258 } // namespace blink 1258 } // namespace blink
1259 1259
1260 #endif // FrameView_h 1260 #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