| OLD | NEW |
| 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 Loading... |
| 139 // determine where inside the renderer we hit on s
ubsequent operations. | 139 // determine where inside the renderer we hit on s
ubsequent operations. |
| 140 RefPtr<Element> m_innerURLElement; | 140 RefPtr<Element> m_innerURLElement; |
| 141 RefPtr<Scrollbar> m_scrollbar; | 141 RefPtr<Scrollbar> m_scrollbar; |
| 142 bool m_isOverWidget; // Returns true if we are over a widget (and not in the
border/padding area of a RenderWidget for example). | 142 bool m_isOverWidget; // Returns true if we are over a widget (and not in the
border/padding area of a RenderWidget for example). |
| 143 bool m_allowPseudoElements; | 143 bool m_allowPseudoElements; |
| 144 bool m_isFirstLetter; | 144 bool m_isFirstLetter; |
| 145 | 145 |
| 146 mutable OwnPtr<NodeSet> m_rectBasedTestResult; | 146 mutable OwnPtr<NodeSet> m_rectBasedTestResult; |
| 147 }; | 147 }; |
| 148 | 148 |
| 149 String displayString(const String&, const Node*); | |
| 150 | |
| 151 } // namespace WebCore | 149 } // namespace WebCore |
| 152 | 150 |
| 153 #endif // HitTestResult_h | 151 #endif // HitTestResult_h |
| OLD | NEW |