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

Unified Diff: third_party/WebKit/Source/modules/crypto/CryptoKey.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/modules/crypto/CryptoKey.idl
diff --git a/third_party/WebKit/Source/modules/crypto/CryptoKey.idl b/third_party/WebKit/Source/modules/crypto/CryptoKey.idl
index bce2c9110d96f4bd23999e1a33c838cfe7de1eaf..1039cfc47bc0dd3420ace98d9585a8c1595b1730 100644
--- a/third_party/WebKit/Source/modules/crypto/CryptoKey.idl
+++ b/third_party/WebKit/Source/modules/crypto/CryptoKey.idl
@@ -33,9 +33,9 @@
[
Exposed=(Window,Worker)
] interface CryptoKey {
- readonly attribute DOMString type;
- readonly attribute boolean extractable;
- [CallWith=ScriptState] readonly attribute object algorithm;
+ [Measure] readonly attribute DOMString type;
+ [Measure] readonly attribute boolean extractable;
+ [Measure, CallWith=ScriptState] readonly attribute object algorithm;
// TODO(jyasskin): |usages| should be of type object.
- readonly attribute DOMString[] usages;
+ [Measure] readonly attribute DOMString[] usages;
};
« no previous file with comments | « third_party/WebKit/Source/modules/crypto/Crypto.idl ('k') | third_party/WebKit/Source/modules/crypto/WindowCrypto.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698