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

Unified Diff: third_party/WebKit/Source/core/html/HTMLFrameElement.idl

Issue 2526943002: Add use counters for lots of DOM APIs.
Patch Set: Add use counters for lots of DOM APIs. Created 4 years 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
Index: third_party/WebKit/Source/core/html/HTMLFrameElement.idl
diff --git a/third_party/WebKit/Source/core/html/HTMLFrameElement.idl b/third_party/WebKit/Source/core/html/HTMLFrameElement.idl
index a20103f348da54177fd674011091ea46e1f633b8..b1033b86c262e060e3367d715e5d17b6364beade 100644
--- a/third_party/WebKit/Source/core/html/HTMLFrameElement.idl
+++ b/third_party/WebKit/Source/core/html/HTMLFrameElement.idl
@@ -21,15 +21,15 @@
// https://html.spec.whatwg.org/#htmlframeelement
interface HTMLFrameElement : HTMLElement {
- [CEReactions, Reflect] attribute DOMString name;
- [CEReactions, Reflect] attribute DOMString scrolling;
- [CEReactions, Reflect, URL] attribute DOMString src;
- [CEReactions, Reflect] attribute DOMString frameBorder;
- [CEReactions, Reflect, URL] attribute DOMString longDesc;
- [CEReactions, Reflect] attribute boolean noResize;
- [CheckSecurity=ReturnValue] readonly attribute Document? contentDocument;
- readonly attribute Window? contentWindow;
+ [MeasureAs=FrameAPI, CEReactions, Reflect] attribute DOMString name;
+ [MeasureAs=FrameAPI, CEReactions, Reflect] attribute DOMString scrolling;
+ [MeasureAs=FrameAPI, CEReactions, Reflect, URL] attribute DOMString src;
+ [MeasureAs=FrameAPI, CEReactions, Reflect] attribute DOMString frameBorder;
+ [MeasureAs=FrameAPI, CEReactions, Reflect, URL] attribute DOMString longDesc;
+ [MeasureAs=FrameAPI, CEReactions, Reflect] attribute boolean noResize;
+ [MeasureAs=FrameAPI, CheckSecurity=ReturnValue] readonly attribute Document? contentDocument;
+ [MeasureAs=FrameAPI] readonly attribute Window? contentWindow;
- [CEReactions, Reflect, TreatNullAs=EmptyString] attribute DOMString marginHeight;
- [CEReactions, Reflect, TreatNullAs=EmptyString] attribute DOMString marginWidth;
+ [MeasureAs=FrameAPI, CEReactions, Reflect, TreatNullAs=EmptyString] attribute DOMString marginHeight;
+ [MeasureAs=FrameAPI, CEReactions, Reflect, TreatNullAs=EmptyString] attribute DOMString marginWidth;
};
« no previous file with comments | « third_party/WebKit/Source/core/html/HTMLFormElement.idl ('k') | third_party/WebKit/Source/core/html/HTMLHRElement.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698