OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef HitRegion_h | 5 #ifndef HitRegion_h |
6 #define HitRegion_h | 6 #define HitRegion_h |
7 | 7 |
8 #include "bindings/core/v8/Dictionary.h" | |
9 #include "core/dom/Element.h" | 8 #include "core/dom/Element.h" |
10 #include "core/html/canvas/HitRegionOptions.h" | 9 #include "core/html/canvas/HitRegionOptions.h" |
11 #include "platform/graphics/Path.h" | 10 #include "platform/graphics/Path.h" |
12 #include "platform/heap/Handle.h" | 11 #include "platform/heap/Handle.h" |
13 #include "wtf/Noncopyable.h" | 12 #include "wtf/Noncopyable.h" |
14 #include "wtf/OwnPtr.h" | 13 #include "wtf/OwnPtr.h" |
15 #include "wtf/PassOwnPtr.h" | 14 #include "wtf/PassOwnPtr.h" |
16 #include "wtf/PassRefPtr.h" | 15 #include "wtf/PassRefPtr.h" |
17 #include "wtf/RefPtr.h" | 16 #include "wtf/RefPtr.h" |
18 | 17 |
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
79 typedef WillBeHeapHashMap<RefPtrWillBeMember<Element>, RefPtrWillBeMember<Hi
tRegion>> HitRegionControlMap; | 78 typedef WillBeHeapHashMap<RefPtrWillBeMember<Element>, RefPtrWillBeMember<Hi
tRegion>> HitRegionControlMap; |
80 | 79 |
81 HitRegionList m_hitRegionList; | 80 HitRegionList m_hitRegionList; |
82 HitRegionIdMap m_hitRegionIdMap; | 81 HitRegionIdMap m_hitRegionIdMap; |
83 HitRegionControlMap m_hitRegionControlMap; | 82 HitRegionControlMap m_hitRegionControlMap; |
84 }; | 83 }; |
85 | 84 |
86 } // namespace blink | 85 } // namespace blink |
87 | 86 |
88 #endif | 87 #endif |
OLD | NEW |