Changeset 170677 in webkit for trunk/Source/JavaScriptCore/debugger/Debugger.h
- Timestamp:
- Jul 1, 2014, 4:40:32 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/debugger/Debugger.h
r165005 r170677 30 30 #include <wtf/HashSet.h> 31 31 #include <wtf/RefPtr.h> 32 #include <wtf/Vector.h>33 32 #include <wtf/text/TextPosition.h> 34 33 … … 129 128 typedef HashMap<BreakpointID, Breakpoint*> BreakpointIDToBreakpointMap; 130 129 131 typedef Vector<Breakpoint> BreakpointsInLine; 132 typedef HashMap<unsigned, BreakpointsInLine, WTF::IntHash<int>, WTF::UnsignedWithZeroKeyHashTraits<int>> LineToBreakpointsMap; 130 typedef HashMap<unsigned, RefPtr<BreakpointsList>, WTF::IntHash<int>, WTF::UnsignedWithZeroKeyHashTraits<int>> LineToBreakpointsMap; 133 131 typedef HashMap<SourceID, LineToBreakpointsMap, WTF::IntHash<SourceID>, WTF::UnsignedWithZeroKeyHashTraits<SourceID>> SourceIDToBreakpointsMap; 134 132
Note:
See TracChangeset
for help on using the changeset viewer.