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

Unified 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/core/dom/Element.cpp ('k') | Source/core/inspector/InspectorDOMAgent.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/inspector/InspectorDOMAgent.h
diff --git a/Source/core/inspector/InspectorDOMAgent.h b/Source/core/inspector/InspectorDOMAgent.h
index a47d499f4ae1282786fe1ee1417e2cf277d92c43..9425a351d5ea0ea5c17863bb5f6e532fd8eae549 100644
--- a/Source/core/inspector/InspectorDOMAgent.h
+++ b/Source/core/inspector/InspectorDOMAgent.h
@@ -175,8 +175,8 @@ public:
void didInsertDOMNode(Node*);
void willRemoveDOMNode(Node*);
void willModifyDOMAttr(Element*, const AtomicString& oldValue, const AtomicString& newValue);
- void didModifyDOMAttr(Element*, const String& name, const AtomicString& value);
- void didRemoveDOMAttr(Element*, const String& name);
+ void didModifyDOMAttr(Element*, const QualifiedName&, const AtomicString& value);
+ void didRemoveDOMAttr(Element*, const QualifiedName&);
void styleAttributeInvalidated(const WillBeHeapVector<RawPtrWillBeMember<Element> >& elements);
void contentDistributionInvalidated(const WillBeHeapVector<RawPtrWillBeMember<Element> >& elements);
void characterDataModified(CharacterData*);
« 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