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 242 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
253 HashMap<int, NodeToIdMap*> m_idToNodesMap; | 253 HashMap<int, NodeToIdMap*> m_idToNodesMap; |
254 HashSet<int> m_childrenRequested; | 254 HashSet<int> m_childrenRequested; |
255 HashMap<int, int> m_cachedChildCount; | 255 HashMap<int, int> m_cachedChildCount; |
256 int m_lastNodeId; | 256 int m_lastNodeId; |
257 RefPtr<Document> m_document; | 257 RefPtr<Document> m_document; |
258 typedef HashMap<String, Vector<RefPtr<Node> > > SearchResults; | 258 typedef HashMap<String, Vector<RefPtr<Node> > > SearchResults; |
259 SearchResults m_searchResults; | 259 SearchResults m_searchResults; |
260 OwnPtr<RevalidateStyleAttributeTask> m_revalidateStyleAttrTask; | 260 OwnPtr<RevalidateStyleAttributeTask> m_revalidateStyleAttrTask; |
261 SearchMode m_searchingForNode; | 261 SearchMode m_searchingForNode; |
262 OwnPtr<HighlightConfig> m_inspectModeHighlightConfig; | 262 OwnPtr<HighlightConfig> m_inspectModeHighlightConfig; |
263 OwnPtr<InspectorHistory> m_history; | 263 OwnPtrWillBePersistent<InspectorHistory> m_history; |
264 OwnPtr<DOMEditor> m_domEditor; | 264 OwnPtrWillBePersistent<DOMEditor> m_domEditor; |
265 bool m_suppressAttributeModifiedEvent; | 265 bool m_suppressAttributeModifiedEvent; |
266 }; | 266 }; |
267 | 267 |
268 | 268 |
269 } // namespace WebCore | 269 } // namespace WebCore |
270 | 270 |
271 #endif // !defined(InspectorDOMAgent_h) | 271 #endif // !defined(InspectorDOMAgent_h) |
OLD | NEW |