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

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

Issue 832343003: Delay string conversion of attribute names until needed. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 11 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/core/dom/Element.cpp ('k') | Source/core/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 157 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
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)
OLDNEW
« no previous file with comments | « Source/core/dom/Element.cpp ('k') | Source/core/inspector/InspectorDOMAgent.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698