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