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 157 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
168 void didRemoveDOMAttr(Element*, const AtomicString& name); | 168 void didRemoveDOMAttr(Element*, const AtomicString& name); |
169 void styleAttributeInvalidated(const Vector<Element*>& elements); | 169 void styleAttributeInvalidated(const Vector<Element*>& elements); |
170 void characterDataModified(CharacterData*); | 170 void characterDataModified(CharacterData*); |
171 void didInvalidateStyleAttr(Node*); | 171 void didInvalidateStyleAttr(Node*); |
172 void didPushShadowRoot(Element* host, ShadowRoot*); | 172 void didPushShadowRoot(Element* host, ShadowRoot*); |
173 void willPopShadowRoot(Element* host, ShadowRoot*); | 173 void willPopShadowRoot(Element* host, ShadowRoot*); |
174 void frameDocumentUpdated(LocalFrame*); | 174 void frameDocumentUpdated(LocalFrame*); |
175 void pseudoElementCreated(PseudoElement*); | 175 void pseudoElementCreated(PseudoElement*); |
176 void pseudoElementDestroyed(PseudoElement*); | 176 void pseudoElementDestroyed(PseudoElement*); |
177 | 177 |
178 int pushNodeToFrontend(ErrorString*, int documentNodeId, Node*); | |
179 Node* nodeForId(int nodeId); | 178 Node* nodeForId(int nodeId); |
180 int boundNodeId(Node*); | 179 int boundNodeId(Node*); |
181 void setDOMListener(DOMListener*); | 180 void setDOMListener(DOMListener*); |
182 BackendNodeId backendNodeIdForNode(Node*, const String& nodeGroup); | 181 BackendNodeId backendNodeIdForNode(Node*, const String& nodeGroup); |
183 | 182 |
184 static String documentURLString(Document*); | 183 static String documentURLString(Document*); |
185 | 184 |
186 PassRefPtr<TypeBuilder::Runtime::RemoteObject> resolveNode(Node*, const Stri
ng& objectGroup); | 185 PassRefPtr<TypeBuilder::Runtime::RemoteObject> resolveNode(Node*, const Stri
ng& objectGroup); |
187 bool handleMousePress(); | 186 bool handleMousePress(); |
188 bool handleGestureEvent(LocalFrame*, const PlatformGestureEvent&); | 187 bool handleGestureEvent(LocalFrame*, const PlatformGestureEvent&); |
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
272 OwnPtr<HighlightConfig> m_inspectModeHighlightConfig; | 271 OwnPtr<HighlightConfig> m_inspectModeHighlightConfig; |
273 OwnPtr<InspectorHistory> m_history; | 272 OwnPtr<InspectorHistory> m_history; |
274 OwnPtr<DOMEditor> m_domEditor; | 273 OwnPtr<DOMEditor> m_domEditor; |
275 bool m_suppressAttributeModifiedEvent; | 274 bool m_suppressAttributeModifiedEvent; |
276 }; | 275 }; |
277 | 276 |
278 | 277 |
279 } // namespace WebCore | 278 } // namespace WebCore |
280 | 279 |
281 #endif // !defined(InspectorDOMAgent_h) | 280 #endif // !defined(InspectorDOMAgent_h) |
OLD | NEW |