| 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 237 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 248 | 248 |
| 249 Node* nodeForPath(const String& path); | 249 Node* nodeForPath(const String& path); |
| 250 | 250 |
| 251 void discardFrontendBindings(); | 251 void discardFrontendBindings(); |
| 252 | 252 |
| 253 void innerHighlightQuad(PassOwnPtr<FloatQuad>, const RefPtr<JSONObject>* col
or, const RefPtr<JSONObject>* outlineColor); | 253 void innerHighlightQuad(PassOwnPtr<FloatQuad>, const RefPtr<JSONObject>* col
or, const RefPtr<JSONObject>* outlineColor); |
| 254 | 254 |
| 255 bool pushDocumentUponHandlelessOperation(ErrorString*); | 255 bool pushDocumentUponHandlelessOperation(ErrorString*); |
| 256 | 256 |
| 257 RawPtrWillBeMember<InspectorPageAgent> m_pageAgent; | 257 RawPtrWillBeMember<InspectorPageAgent> m_pageAgent; |
| 258 // FIXME: Oilpan: Move InjectedScriptManager to heap in follow-up CL. | 258 RawPtrWillBeMember<InjectedScriptManager> m_injectedScriptManager; |
| 259 InjectedScriptManager* m_injectedScriptManager; | |
| 260 InspectorOverlay* m_overlay; | 259 InspectorOverlay* m_overlay; |
| 261 InspectorFrontend::DOM* m_frontend; | 260 InspectorFrontend::DOM* m_frontend; |
| 262 RawPtrWillBeMember<DOMListener> m_domListener; | 261 RawPtrWillBeMember<DOMListener> m_domListener; |
| 263 OwnPtrWillBeMember<NodeToIdMap> m_documentNodeToIdMap; | 262 OwnPtrWillBeMember<NodeToIdMap> m_documentNodeToIdMap; |
| 264 // Owns node mappings for dangling nodes. | 263 // Owns node mappings for dangling nodes. |
| 265 WillBeHeapVector<OwnPtrWillBeMember<NodeToIdMap> > m_danglingNodeToIdMaps; | 264 WillBeHeapVector<OwnPtrWillBeMember<NodeToIdMap> > m_danglingNodeToIdMaps; |
| 266 WillBeHeapHashMap<int, RawPtrWillBeMember<Node> > m_idToNode; | 265 WillBeHeapHashMap<int, RawPtrWillBeMember<Node> > m_idToNode; |
| 267 WillBeHeapHashMap<int, RawPtrWillBeMember<NodeToIdMap> > m_idToNodesMap; | 266 WillBeHeapHashMap<int, RawPtrWillBeMember<NodeToIdMap> > m_idToNodesMap; |
| 268 HashSet<int> m_childrenRequested; | 267 HashSet<int> m_childrenRequested; |
| 269 HashMap<int, int> m_cachedChildCount; | 268 HashMap<int, int> m_cachedChildCount; |
| 270 int m_lastNodeId; | 269 int m_lastNodeId; |
| 271 RefPtrWillBeMember<Document> m_document; | 270 RefPtrWillBeMember<Document> m_document; |
| 272 typedef WillBeHeapHashMap<String, WillBeHeapVector<RefPtrWillBeMember<Node>
> > SearchResults; | 271 typedef WillBeHeapHashMap<String, WillBeHeapVector<RefPtrWillBeMember<Node>
> > SearchResults; |
| 273 SearchResults m_searchResults; | 272 SearchResults m_searchResults; |
| 274 OwnPtr<RevalidateStyleAttributeTask> m_revalidateStyleAttrTask; | 273 OwnPtrWillBeMember<RevalidateStyleAttributeTask> m_revalidateStyleAttrTask; |
| 275 SearchMode m_searchingForNode; | 274 SearchMode m_searchingForNode; |
| 276 OwnPtr<HighlightConfig> m_inspectModeHighlightConfig; | 275 OwnPtr<HighlightConfig> m_inspectModeHighlightConfig; |
| 277 OwnPtrWillBeMember<InspectorHistory> m_history; | 276 OwnPtrWillBeMember<InspectorHistory> m_history; |
| 278 OwnPtrWillBeMember<DOMEditor> m_domEditor; | 277 OwnPtrWillBeMember<DOMEditor> m_domEditor; |
| 279 bool m_suppressAttributeModifiedEvent; | 278 bool m_suppressAttributeModifiedEvent; |
| 280 RawPtrWillBeMember<Listener> m_listener; | 279 RawPtrWillBeMember<Listener> m_listener; |
| 281 }; | 280 }; |
| 282 | 281 |
| 283 | 282 |
| 284 } // namespace WebCore | 283 } // namespace WebCore |
| 285 | 284 |
| 286 #endif // !defined(InspectorDOMAgent_h) | 285 #endif // !defined(InspectorDOMAgent_h) |
| OLD | NEW |