| 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 12 matching lines...) Expand all Loading... |
| 23 #define HitTestResult_h | 23 #define HitTestResult_h |
| 24 | 24 |
| 25 #include "core/CoreExport.h" | 25 #include "core/CoreExport.h" |
| 26 #include "core/editing/PositionWithAffinity.h" | 26 #include "core/editing/PositionWithAffinity.h" |
| 27 #include "core/layout/HitTestLocation.h" | 27 #include "core/layout/HitTestLocation.h" |
| 28 #include "core/layout/HitTestRequest.h" | 28 #include "core/layout/HitTestRequest.h" |
| 29 #include "platform/geometry/FloatQuad.h" | 29 #include "platform/geometry/FloatQuad.h" |
| 30 #include "platform/geometry/FloatRect.h" | 30 #include "platform/geometry/FloatRect.h" |
| 31 #include "platform/heap/Handle.h" | 31 #include "platform/heap/Handle.h" |
| 32 #include "platform/text/TextDirection.h" | 32 #include "platform/text/TextDirection.h" |
| 33 #include "wtf/Forward.h" | 33 #include "platform/wtf/Forward.h" |
| 34 #include "wtf/ListHashSet.h" | 34 #include "platform/wtf/ListHashSet.h" |
| 35 #include "wtf/VectorTraits.h" | 35 #include "platform/wtf/VectorTraits.h" |
| 36 | 36 |
| 37 namespace blink { | 37 namespace blink { |
| 38 | 38 |
| 39 class Element; | 39 class Element; |
| 40 class LocalFrame; | 40 class LocalFrame; |
| 41 class HTMLAreaElement; | 41 class HTMLAreaElement; |
| 42 class HTMLMediaElement; | 42 class HTMLMediaElement; |
| 43 class Image; | 43 class Image; |
| 44 class KURL; | 44 class KURL; |
| 45 class Node; | 45 class Node; |
| (...skipping 170 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 216 | 216 |
| 217 mutable Member<NodeSet> list_based_test_result_; | 217 mutable Member<NodeSet> list_based_test_result_; |
| 218 String canvas_region_id_; | 218 String canvas_region_id_; |
| 219 }; | 219 }; |
| 220 | 220 |
| 221 } // namespace blink | 221 } // namespace blink |
| 222 | 222 |
| 223 WTF_ALLOW_CLEAR_UNUSED_SLOTS_WITH_MEM_FUNCTIONS(blink::HitTestResult); | 223 WTF_ALLOW_CLEAR_UNUSED_SLOTS_WITH_MEM_FUNCTIONS(blink::HitTestResult); |
| 224 | 224 |
| 225 #endif // HitTestResult_h | 225 #endif // HitTestResult_h |
| OLD | NEW |