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

Unified Diff: Source/core/dom/DOMError.idl

Issue 1151023004: Add use counters to determine the fate of DOMError (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 6 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 | « no previous file | Source/core/fileapi/FileReader.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/dom/DOMError.idl
diff --git a/Source/core/dom/DOMError.idl b/Source/core/dom/DOMError.idl
index 5e49b8193de4d65eaa1e371d9107031894ccbad8..d0c954475628ed41222e6afb4123ac5d20409a2f 100644
--- a/Source/core/dom/DOMError.idl
+++ b/Source/core/dom/DOMError.idl
@@ -31,8 +31,9 @@
// FIXME: DOMError has been removed from the spec. crbug.com/460725
[
Constructor(DOMString name, optional DOMString message = null),
- GarbageCollected
+ GarbageCollected,
+ Measure,
] interface DOMError {
- readonly attribute DOMString name;
- readonly attribute DOMString message;
+ [Measure] readonly attribute DOMString name;
+ [Measure] readonly attribute DOMString message;
};
« no previous file with comments | « no previous file | Source/core/fileapi/FileReader.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698