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

Side by Side 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 unified diff | Download patch
« no previous file with comments | « Source/core/inspector/InspectorDOMAgent.cpp ('k') | no next file » | 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) 2013 Google Inc. All rights reserved. 2 * Copyright (C) 2013 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after
80 [DOM, DOMDebugger, Inline=FastReturn] 80 [DOM, DOMDebugger, Inline=FastReturn]
81 void didInsertDOMNode([Keep] Node*); 81 void didInsertDOMNode([Keep] Node*);
82 82
83 [DOMDebugger, DOM, Inline=FastReturn] 83 [DOMDebugger, DOM, Inline=FastReturn]
84 void willRemoveDOMNode([Keep] Node*); 84 void willRemoveDOMNode([Keep] Node*);
85 85
86 [DOMDebugger, DOM, Inline=FastReturn] 86 [DOMDebugger, DOM, Inline=FastReturn]
87 void willModifyDOMAttr([Keep] Element*, const AtomicString& oldValue, const AtomicString& newValue); 87 void willModifyDOMAttr([Keep] Element*, const AtomicString& oldValue, const AtomicString& newValue);
88 88
89 [DOM, Inline=FastReturn] 89 [DOM, Inline=FastReturn]
90 void didModifyDOMAttr([Keep] Element*, const String& name, const AtomicStrin g& value); 90 void didModifyDOMAttr([Keep] Element*, const QualifiedName& name, const Atom icString& value);
91 91
92 [DOM, Inline=FastReturn] 92 [DOM, Inline=FastReturn]
93 void didRemoveDOMAttr([Keep] Element*, const String& name); 93 void didRemoveDOMAttr([Keep] Element*, const QualifiedName& name);
94 94
95 [DOM, Inline=FastReturn] 95 [DOM, Inline=FastReturn]
96 void characterDataModified([Keep] CharacterData*); 96 void characterDataModified([Keep] CharacterData*);
97 97
98 [DOM, DOMDebugger, Inline=FastReturn] 98 [DOM, DOMDebugger, Inline=FastReturn]
99 void didInvalidateStyleAttr([Keep] Node*); 99 void didInvalidateStyleAttr([Keep] Node*);
100 100
101 [DOM, Inline=FastReturn] 101 [DOM, Inline=FastReturn]
102 void didPerformElementShadowDistribution([Keep] Element*); 102 void didPerformElementShadowDistribution([Keep] Element*);
103 103
(...skipping 423 matching lines...) Expand 10 before | Expand all | Expand 10 after
527 interface InspectorCanvasInstrumentation { 527 interface InspectorCanvasInstrumentation {
528 528
529 #include "bindings/core/v8/ScriptValue.h" 529 #include "bindings/core/v8/ScriptValue.h"
530 530
531 [Canvas] 531 [Canvas]
532 ScriptValue wrapCanvas2DRenderingContextForInstrumentation(Document*, const ScriptValue&); 532 ScriptValue wrapCanvas2DRenderingContextForInstrumentation(Document*, const ScriptValue&);
533 533
534 [Canvas] 534 [Canvas]
535 ScriptValue wrapWebGLRenderingContextForInstrumentation(Document*, const Scr iptValue&); 535 ScriptValue wrapWebGLRenderingContextForInstrumentation(Document*, const Scr iptValue&);
536 } 536 }
OLDNEW
« 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