Changeset 203442 in webkit
- Timestamp:
- Jul 19, 2016, 8:23:18 PM (10 years ago)
- Location:
- trunk/Source/WebKit2
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
WebProcess/Automation/WebAutomationSessionProxy.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebKit2/ChangeLog
r203414 r203442 1 2016-07-19 Brian Burg <bburg@apple.com> 2 3 Web Automation: WebAutomationSessionProxy's HashMaps should support '0' as valid keys 4 https://bugs.webkit.org/show_bug.cgi?id=159957 5 <rdar://problem/27376446> 6 7 Reviewed by Joseph Pecoraro. 8 9 * WebProcess/Automation/WebAutomationSessionProxy.h: 10 Use UnsignedWithZeroKeyHashTraits to avoid problems with zero as a key. 11 1 12 2016-07-19 Anders Carlsson <andersca@apple.com> 2 13 -
trunk/Source/WebKit2/WebProcess/Automation/WebAutomationSessionProxy.h
r203245 r203442 72 72 String m_sessionIdentifier; 73 73 74 HashMap<uint64_t, JSObjectRef > m_webFrameScriptObjectMap;75 HashMap<uint64_t, Vector<uint64_t> > m_webFramePendingEvaluateJavaScriptCallbacksMap;74 HashMap<uint64_t, JSObjectRef, DefaultHash<uint64_t>::Hash, WTF::UnsignedWithZeroKeyHashTraits<uint64_t>> m_webFrameScriptObjectMap; 75 HashMap<uint64_t, Vector<uint64_t>, DefaultHash<uint64_t>::Hash, WTF::UnsignedWithZeroKeyHashTraits<uint64_t>> m_webFramePendingEvaluateJavaScriptCallbacksMap; 76 76 }; 77 77
Note:
See TracChangeset
for help on using the changeset viewer.