| 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 229 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 240 | 240 |
| 241 int pushNodePathToFrontend(Node*, NodeToIdMap* nodeMap); | 241 int pushNodePathToFrontend(Node*, NodeToIdMap* nodeMap); |
| 242 int pushNodePathToFrontend(Node*); | 242 int pushNodePathToFrontend(Node*); |
| 243 void pushChildNodesToFrontend(int nodeId, int depth = 1); | 243 void pushChildNodesToFrontend(int nodeId, int depth = 1); |
| 244 | 244 |
| 245 void invalidateFrameOwnerElement(LocalFrame*); | 245 void invalidateFrameOwnerElement(LocalFrame*); |
| 246 | 246 |
| 247 PassRefPtr<TypeBuilder::DOM::Node> buildObjectForNode(Node*, int depth, Node
ToIdMap*); | 247 PassRefPtr<TypeBuilder::DOM::Node> buildObjectForNode(Node*, int depth, Node
ToIdMap*); |
| 248 PassRefPtr<TypeBuilder::Array<String> > buildArrayForElementAttributes(Eleme
nt*); | 248 PassRefPtr<TypeBuilder::Array<String> > buildArrayForElementAttributes(Eleme
nt*); |
| 249 PassRefPtr<TypeBuilder::Array<TypeBuilder::DOM::Node> > buildArrayForContain
erChildren(Node* container, int depth, NodeToIdMap* nodesMap); | 249 PassRefPtr<TypeBuilder::Array<TypeBuilder::DOM::Node> > buildArrayForContain
erChildren(Node* container, int depth, NodeToIdMap* nodesMap); |
| 250 PassRefPtr<TypeBuilder::DOM::EventListener> buildObjectForEventListener(cons
t RegisteredEventListener&, const AtomicString& eventType, Node*, const String*
objectGroupId); | 250 PassRefPtr<TypeBuilder::DOM::EventListener> buildObjectForEventListener(cons
t RegisteredEventListener&, const AtomicString& eventType, EventTarget*, const S
tring* objectGroupId); |
| 251 PassRefPtr<TypeBuilder::Array<TypeBuilder::DOM::Node> > buildArrayForPseudoE
lements(Element*, NodeToIdMap* nodesMap); | 251 PassRefPtr<TypeBuilder::Array<TypeBuilder::DOM::Node> > buildArrayForPseudoE
lements(Element*, NodeToIdMap* nodesMap); |
| 252 PassRefPtr<TypeBuilder::Array<TypeBuilder::DOM::BackendNode>> buildArrayForD
istributedNodes(InsertionPoint*); | 252 PassRefPtr<TypeBuilder::Array<TypeBuilder::DOM::BackendNode>> buildArrayForD
istributedNodes(InsertionPoint*); |
| 253 | 253 |
| 254 Node* nodeForPath(const String& path); | 254 Node* nodeForPath(const String& path); |
| 255 | 255 |
| 256 void discardFrontendBindings(); | 256 void discardFrontendBindings(); |
| 257 | 257 |
| 258 void innerHighlightQuad(PassOwnPtr<FloatQuad>, const RefPtr<JSONObject>* col
or, const RefPtr<JSONObject>* outlineColor); | 258 void innerHighlightQuad(PassOwnPtr<FloatQuad>, const RefPtr<JSONObject>* col
or, const RefPtr<JSONObject>* outlineColor); |
| 259 | 259 |
| 260 bool pushDocumentUponHandlelessOperation(ErrorString*); | 260 bool pushDocumentUponHandlelessOperation(ErrorString*); |
| (...skipping 24 matching lines...) Expand all Loading... |
| 285 OwnPtrWillBeMember<DOMEditor> m_domEditor; | 285 OwnPtrWillBeMember<DOMEditor> m_domEditor; |
| 286 bool m_suppressAttributeModifiedEvent; | 286 bool m_suppressAttributeModifiedEvent; |
| 287 RawPtrWillBeMember<Listener> m_listener; | 287 RawPtrWillBeMember<Listener> m_listener; |
| 288 int m_backendNodeIdToInspect; | 288 int m_backendNodeIdToInspect; |
| 289 }; | 289 }; |
| 290 | 290 |
| 291 | 291 |
| 292 } // namespace blink | 292 } // namespace blink |
| 293 | 293 |
| 294 #endif // !defined(InspectorDOMAgent_h) | 294 #endif // !defined(InspectorDOMAgent_h) |
| OLD | NEW |