OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2009 Apple Inc. All rights reserved. | 2 * Copyright (C) 2009 Apple Inc. All rights reserved. |
3 * Copyright (C) 2011 Google Inc. All rights reserved. | 3 * Copyright (C) 2011 Google Inc. All rights reserved. |
4 * | 4 * |
5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
6 * modification, are permitted provided that the following conditions | 6 * modification, are permitted provided that the following conditions |
7 * are met: | 7 * are met: |
8 * | 8 * |
9 * 1. Redistributions of source code must retain the above copyright | 9 * 1. Redistributions of source code must retain the above copyright |
10 * notice, this list of conditions and the following disclaimer. | 10 * notice, this list of conditions and the following disclaimer. |
(...skipping 252 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
263 // Owns node mappings for dangling nodes. | 263 // Owns node mappings for dangling nodes. |
264 WillBeHeapVector<OwnPtrWillBeMember<NodeToIdMap> > m_danglingNodeToIdMaps; | 264 WillBeHeapVector<OwnPtrWillBeMember<NodeToIdMap> > m_danglingNodeToIdMaps; |
265 WillBeHeapHashMap<int, RawPtrWillBeMember<Node> > m_idToNode; | 265 WillBeHeapHashMap<int, RawPtrWillBeMember<Node> > m_idToNode; |
266 WillBeHeapHashMap<int, RawPtrWillBeMember<NodeToIdMap> > m_idToNodesMap; | 266 WillBeHeapHashMap<int, RawPtrWillBeMember<NodeToIdMap> > m_idToNodesMap; |
267 HashSet<int> m_childrenRequested; | 267 HashSet<int> m_childrenRequested; |
268 HashMap<int, int> m_cachedChildCount; | 268 HashMap<int, int> m_cachedChildCount; |
269 int m_lastNodeId; | 269 int m_lastNodeId; |
270 RefPtrWillBeMember<Document> m_document; | 270 RefPtrWillBeMember<Document> m_document; |
271 typedef WillBeHeapHashMap<String, WillBeHeapVector<RefPtrWillBeMember<Node>
> > SearchResults; | 271 typedef WillBeHeapHashMap<String, WillBeHeapVector<RefPtrWillBeMember<Node>
> > SearchResults; |
272 SearchResults m_searchResults; | 272 SearchResults m_searchResults; |
273 OwnPtr<RevalidateStyleAttributeTask> m_revalidateStyleAttrTask; | 273 OwnPtrWillBeMember<RevalidateStyleAttributeTask> m_revalidateStyleAttrTask; |
274 SearchMode m_searchingForNode; | 274 SearchMode m_searchingForNode; |
275 OwnPtr<HighlightConfig> m_inspectModeHighlightConfig; | 275 OwnPtr<HighlightConfig> m_inspectModeHighlightConfig; |
276 OwnPtrWillBeMember<InspectorHistory> m_history; | 276 OwnPtrWillBeMember<InspectorHistory> m_history; |
277 OwnPtrWillBeMember<DOMEditor> m_domEditor; | 277 OwnPtrWillBeMember<DOMEditor> m_domEditor; |
278 bool m_suppressAttributeModifiedEvent; | 278 bool m_suppressAttributeModifiedEvent; |
279 Listener* m_listener; | 279 Listener* m_listener; |
280 }; | 280 }; |
281 | 281 |
282 | 282 |
283 } // namespace WebCore | 283 } // namespace WebCore |
284 | 284 |
285 #endif // !defined(InspectorDOMAgent_h) | 285 #endif // !defined(InspectorDOMAgent_h) |
OLD | NEW |