Chromium Code Reviews

Unified Diff: Source/modules/storage/Storage.idl

Issue 1055133003: Oilpan: have Storage objects reside on the heap by default. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: trivial cl footprint reduction Created 5 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Index: Source/modules/storage/Storage.idl
diff --git a/Source/modules/storage/Storage.idl b/Source/modules/storage/Storage.idl
index 16c7cbd7d4bcc3f8ae61ed1e34584099c34e9c9a..63f4d5aac0a6691a4e0e4058cf8a1c7263684e63 100644
--- a/Source/modules/storage/Storage.idl
+++ b/Source/modules/storage/Storage.idl
@@ -24,7 +24,7 @@
*/
[
- WillBeGarbageCollected
+ GarbageCollected
] interface Storage {
[NotEnumerable, RaisesException] getter DOMString (unsigned long index);
[RaisesException] setter DOMString (unsigned long index, DOMString value);

Powered by Google App Engine