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

Unified Diff: Source/core/inspector/InspectorInstrumentation.idl

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/inspector/InspectorDOMAgent.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/inspector/InspectorInstrumentation.idl
diff --git a/Source/core/inspector/InspectorInstrumentation.idl b/Source/core/inspector/InspectorInstrumentation.idl
index b75229f13b3e6a94de36482d83c0ec902731dbdb..71ba5bf2070a3508be28a30f07a9a1e896edb11c 100644
--- a/Source/core/inspector/InspectorInstrumentation.idl
+++ b/Source/core/inspector/InspectorInstrumentation.idl
@@ -87,10 +87,10 @@ interface InspectorInstrumentation {
void willModifyDOMAttr([Keep] Element*, const AtomicString& oldValue, const AtomicString& newValue);
[DOM, Inline=FastReturn]
- void didModifyDOMAttr([Keep] Element*, const String& name, const AtomicString& value);
+ void didModifyDOMAttr([Keep] Element*, const QualifiedName& name, const AtomicString& value);
[DOM, Inline=FastReturn]
- void didRemoveDOMAttr([Keep] Element*, const String& name);
+ void didRemoveDOMAttr([Keep] Element*, const QualifiedName& name);
[DOM, Inline=FastReturn]
void characterDataModified([Keep] CharacterData*);
« no previous file with comments | « Source/core/inspector/InspectorDOMAgent.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698