| 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 // Methods called from the InspectorInstrumentation. | 168 // Methods called from the InspectorInstrumentation. |
| 169 void setDocument(Document*); | 169 void setDocument(Document*); |
| 170 void releaseDanglingNodes(); | 170 void releaseDanglingNodes(); |
| 171 | 171 |
| 172 void domContentLoadedEventFired(LocalFrame*); | 172 void domContentLoadedEventFired(LocalFrame*); |
| 173 void didCommitLoad(LocalFrame*, DocumentLoader*); | 173 void didCommitLoad(LocalFrame*, DocumentLoader*); |
| 174 | 174 |
| 175 void didInsertDOMNode(Node*); | 175 void didInsertDOMNode(Node*); |
| 176 void willRemoveDOMNode(Node*); | 176 void willRemoveDOMNode(Node*); |
| 177 void willModifyDOMAttr(Element*, const AtomicString& oldValue, const AtomicS
tring& newValue); | 177 void willModifyDOMAttr(Element*, const AtomicString& oldValue, const AtomicS
tring& newValue); |
| 178 void didModifyDOMAttr(Element*, const String& name, const AtomicString& valu
e); | 178 void didModifyDOMAttr(Element*, const QualifiedName&, const AtomicString& va
lue); |
| 179 void didRemoveDOMAttr(Element*, const String& name); | 179 void didRemoveDOMAttr(Element*, const QualifiedName&); |
| 180 void styleAttributeInvalidated(const WillBeHeapVector<RawPtrWillBeMember<Ele
ment> >& elements); | 180 void styleAttributeInvalidated(const WillBeHeapVector<RawPtrWillBeMember<Ele
ment> >& elements); |
| 181 void contentDistributionInvalidated(const WillBeHeapVector<RawPtrWillBeMembe
r<Element> >& elements); | 181 void contentDistributionInvalidated(const WillBeHeapVector<RawPtrWillBeMembe
r<Element> >& elements); |
| 182 void characterDataModified(CharacterData*); | 182 void characterDataModified(CharacterData*); |
| 183 void didInvalidateStyleAttr(Node*); | 183 void didInvalidateStyleAttr(Node*); |
| 184 void didPushShadowRoot(Element* host, ShadowRoot*); | 184 void didPushShadowRoot(Element* host, ShadowRoot*); |
| 185 void willPopShadowRoot(Element* host, ShadowRoot*); | 185 void willPopShadowRoot(Element* host, ShadowRoot*); |
| 186 void didPerformElementShadowDistribution(Element*); | 186 void didPerformElementShadowDistribution(Element*); |
| 187 void frameDocumentUpdated(LocalFrame*); | 187 void frameDocumentUpdated(LocalFrame*); |
| 188 void pseudoElementCreated(PseudoElement*); | 188 void pseudoElementCreated(PseudoElement*); |
| 189 void pseudoElementDestroyed(PseudoElement*); | 189 void pseudoElementDestroyed(PseudoElement*); |
| (...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 281 OwnPtrWillBeMember<InspectorHistory> m_history; | 281 OwnPtrWillBeMember<InspectorHistory> m_history; |
| 282 OwnPtrWillBeMember<DOMEditor> m_domEditor; | 282 OwnPtrWillBeMember<DOMEditor> m_domEditor; |
| 283 bool m_suppressAttributeModifiedEvent; | 283 bool m_suppressAttributeModifiedEvent; |
| 284 RawPtrWillBeMember<Listener> m_listener; | 284 RawPtrWillBeMember<Listener> m_listener; |
| 285 }; | 285 }; |
| 286 | 286 |
| 287 | 287 |
| 288 } // namespace blink | 288 } // namespace blink |
| 289 | 289 |
| 290 #endif // !defined(InspectorDOMAgent_h) | 290 #endif // !defined(InspectorDOMAgent_h) |
| OLD | NEW |