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 254 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
265 WillBePersistentHeapHashMap<int, RawPtrWillBeMember<NodeToIdMap> > m_idToNod
esMap; | 265 WillBePersistentHeapHashMap<int, RawPtrWillBeMember<NodeToIdMap> > m_idToNod
esMap; |
266 HashSet<int> m_childrenRequested; | 266 HashSet<int> m_childrenRequested; |
267 HashMap<int, int> m_cachedChildCount; | 267 HashMap<int, int> m_cachedChildCount; |
268 int m_lastNodeId; | 268 int m_lastNodeId; |
269 RefPtrWillBePersistent<Document> m_document; | 269 RefPtrWillBePersistent<Document> m_document; |
270 typedef WillBePersistentHeapHashMap<String, WillBeHeapVector<RefPtrWillBeMem
ber<Node> > > SearchResults; | 270 typedef WillBePersistentHeapHashMap<String, WillBeHeapVector<RefPtrWillBeMem
ber<Node> > > SearchResults; |
271 SearchResults m_searchResults; | 271 SearchResults m_searchResults; |
272 OwnPtr<RevalidateStyleAttributeTask> m_revalidateStyleAttrTask; | 272 OwnPtr<RevalidateStyleAttributeTask> m_revalidateStyleAttrTask; |
273 SearchMode m_searchingForNode; | 273 SearchMode m_searchingForNode; |
274 OwnPtr<HighlightConfig> m_inspectModeHighlightConfig; | 274 OwnPtr<HighlightConfig> m_inspectModeHighlightConfig; |
275 OwnPtr<InspectorHistory> m_history; | 275 OwnPtrWillBePersistent<InspectorHistory> m_history; |
276 OwnPtr<DOMEditor> m_domEditor; | 276 OwnPtrWillBePersistent<DOMEditor> m_domEditor; |
277 bool m_suppressAttributeModifiedEvent; | 277 bool m_suppressAttributeModifiedEvent; |
278 Listener* m_listener; | 278 Listener* m_listener; |
279 }; | 279 }; |
280 | 280 |
281 | 281 |
282 } // namespace WebCore | 282 } // namespace WebCore |
283 | 283 |
284 #endif // !defined(InspectorDOMAgent_h) | 284 #endif // !defined(InspectorDOMAgent_h) |
OLD | NEW |