Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(314)

Side by Side Diff: Source/WebCore/inspector/InspectorDOMAgent.h

Issue 7147011: Merge 88331 - 2011-06-07 Andrey Kosyakov <caseq@chromium.org> (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/782/
Patch Set: Created 9 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « Source/WebCore/inspector/Inspector.json ('k') | Source/WebCore/inspector/InspectorDOMAgent.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 189 matching lines...) Expand 10 before | Expand all | Expand 10 after
200 PassRefPtr<InspectorArray> buildArrayForContainerChildren(Node* container, i nt depth, NodeToIdMap* nodesMap); 200 PassRefPtr<InspectorArray> buildArrayForContainerChildren(Node* container, i nt depth, NodeToIdMap* nodesMap);
201 PassRefPtr<InspectorObject> buildObjectForEventListener(const RegisteredEven tListener&, const AtomicString& eventType, Node*); 201 PassRefPtr<InspectorObject> buildObjectForEventListener(const RegisteredEven tListener&, const AtomicString& eventType, Node*);
202 202
203 void onMatchJobsTimer(Timer<InspectorDOMAgent>*); 203 void onMatchJobsTimer(Timer<InspectorDOMAgent>*);
204 void reportNodesAsSearchResults(ListHashSet<Node*>& resultCollector); 204 void reportNodesAsSearchResults(ListHashSet<Node*>& resultCollector);
205 205
206 Node* nodeForPath(const String& path); 206 Node* nodeForPath(const String& path);
207 207
208 void discardBindings(); 208 void discardBindings();
209 209
210 static bool isContainerNode(const Node&);
211 InstrumentingAgents* m_instrumentingAgents; 210 InstrumentingAgents* m_instrumentingAgents;
212 InspectorPageAgent* m_pageAgent; 211 InspectorPageAgent* m_pageAgent;
213 InspectorClient* m_client; 212 InspectorClient* m_client;
214 InspectorState* m_inspectorState; 213 InspectorState* m_inspectorState;
215 InjectedScriptManager* m_injectedScriptManager; 214 InjectedScriptManager* m_injectedScriptManager;
216 InspectorFrontend::DOM* m_frontend; 215 InspectorFrontend::DOM* m_frontend;
217 DOMListener* m_domListener; 216 DOMListener* m_domListener;
218 NodeToIdMap m_documentNodeToIdMap; 217 NodeToIdMap m_documentNodeToIdMap;
219 // Owns node mappings for dangling nodes. 218 // Owns node mappings for dangling nodes.
220 Vector<NodeToIdMap*> m_danglingNodeToIdMaps; 219 Vector<NodeToIdMap*> m_danglingNodeToIdMaps;
(...skipping 10 matching lines...) Expand all
231 String m_highlightMode; 230 String m_highlightMode;
232 RefPtr<Node> m_nodeToFocus; 231 RefPtr<Node> m_nodeToFocus;
233 bool m_searchingForNode; 232 bool m_searchingForNode;
234 }; 233 };
235 234
236 #endif // ENABLE(INSPECTOR) 235 #endif // ENABLE(INSPECTOR)
237 236
238 } // namespace WebCore 237 } // namespace WebCore
239 238
240 #endif // !defined(InspectorDOMAgent_h) 239 #endif // !defined(InspectorDOMAgent_h)
OLDNEW
« no previous file with comments | « Source/WebCore/inspector/Inspector.json ('k') | Source/WebCore/inspector/InspectorDOMAgent.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698