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

Unified Diff: third_party/WebKit/Source/core/html/ValidityState.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/ValidityState.idl
diff --git a/third_party/WebKit/Source/core/html/ValidityState.idl b/third_party/WebKit/Source/core/html/ValidityState.idl
index 117bb925acb9ca170eb27e327787456eaa729aa3..f92708fc7d68d8f3eb387955906f6c70df9b1aaa 100644
--- a/third_party/WebKit/Source/core/html/ValidityState.idl
+++ b/third_party/WebKit/Source/core/html/ValidityState.idl
@@ -23,15 +23,15 @@
// https://html.spec.whatwg.org/#validitystate
interface ValidityState {
- readonly attribute boolean valueMissing;
- readonly attribute boolean typeMismatch;
- readonly attribute boolean patternMismatch;
- readonly attribute boolean tooLong;
- readonly attribute boolean tooShort;
- readonly attribute boolean rangeUnderflow;
- readonly attribute boolean rangeOverflow;
- readonly attribute boolean stepMismatch;
- readonly attribute boolean badInput;
- readonly attribute boolean customError;
- readonly attribute boolean valid;
+ [MeasureAs=ValidationAPI] readonly attribute boolean valueMissing;
+ [MeasureAs=ValidationAPI] readonly attribute boolean typeMismatch;
+ [MeasureAs=ValidationAPI] readonly attribute boolean patternMismatch;
+ [MeasureAs=ValidationAPI] readonly attribute boolean tooLong;
+ [MeasureAs=ValidationAPI] readonly attribute boolean tooShort;
+ [MeasureAs=ValidationAPI] readonly attribute boolean rangeUnderflow;
+ [MeasureAs=ValidationAPI] readonly attribute boolean rangeOverflow;
+ [MeasureAs=ValidationAPI] readonly attribute boolean stepMismatch;
+ [MeasureAs=ValidationAPI] readonly attribute boolean badInput;
+ [MeasureAs=ValidationAPI] readonly attribute boolean customError;
+ [MeasureAs=ValidationAPI] readonly attribute boolean valid;
};
« no previous file with comments | « third_party/WebKit/Source/core/html/TimeRanges.idl ('k') | third_party/WebKit/Source/core/html/track/AudioTrack.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698