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

Side by Side Diff: Source/core/rendering/HitTestResult.h

Issue 603193005: Move the Widget hierarchy to the Oilpan heap. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Switch LocalFrame::m_pluginElements rep to HashSet<HTMLPlugInElement*> Created 6 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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2006 Apple Computer, Inc. 2 * Copyright (C) 2006 Apple Computer, Inc.
3 * Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies) 3 * Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies)
4 * 4 *
5 * This library is free software; you can redistribute it and/or 5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Library General Public 6 * modify it under the terms of the GNU Library General Public
7 * License as published by the Free Software Foundation; either 7 * License as published by the Free Software Foundation; either
8 * version 2 of the License, or (at your option) any later version. 8 * version 2 of the License, or (at your option) any later version.
9 * 9 *
10 * This library is distributed in the hope that it will be useful, 10 * This library is distributed in the hope that it will be useful,
(...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after
139 HitTestLocation m_hitTestLocation; 139 HitTestLocation m_hitTestLocation;
140 140
141 RefPtrWillBeMember<Node> m_innerNode; 141 RefPtrWillBeMember<Node> m_innerNode;
142 RefPtrWillBeMember<Node> m_innerPossiblyPseudoNode; 142 RefPtrWillBeMember<Node> m_innerPossiblyPseudoNode;
143 RefPtrWillBeMember<Node> m_innerNonSharedNode; 143 RefPtrWillBeMember<Node> m_innerNonSharedNode;
144 // FIXME: Nothing changes this to a value different from m_hitTestLocation! 144 // FIXME: Nothing changes this to a value different from m_hitTestLocation!
145 LayoutPoint m_pointInInnerNodeFrame; // The hit-tested point in innerNode fr ame coordinates. 145 LayoutPoint m_pointInInnerNodeFrame; // The hit-tested point in innerNode fr ame coordinates.
146 LayoutPoint m_localPoint; // A point in the local coordinate space of m_inne rNonSharedNode's renderer. Allows us to efficiently 146 LayoutPoint m_localPoint; // A point in the local coordinate space of m_inne rNonSharedNode's renderer. Allows us to efficiently
147 // determine where inside the renderer we hit on s ubsequent operations. 147 // determine where inside the renderer we hit on s ubsequent operations.
148 RefPtrWillBeMember<Element> m_innerURLElement; 148 RefPtrWillBeMember<Element> m_innerURLElement;
149 RefPtr<Scrollbar> m_scrollbar; 149 RefPtrWillBeMember<Scrollbar> m_scrollbar;
150 bool m_isOverWidget; // Returns true if we are over a widget (and not in the border/padding area of a RenderPart for example). 150 bool m_isOverWidget; // Returns true if we are over a widget (and not in the border/padding area of a RenderPart for example).
151 bool m_isFirstLetter; 151 bool m_isFirstLetter;
152 152
153 mutable OwnPtrWillBeMember<NodeSet> m_rectBasedTestResult; 153 mutable OwnPtrWillBeMember<NodeSet> m_rectBasedTestResult;
154 }; 154 };
155 155
156 } // namespace blink 156 } // namespace blink
157 157
158 #endif // HitTestResult_h 158 #endif // HitTestResult_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698