Index: third_party/WebKit/Source/modules/storage/Storage.idl |
diff --git a/third_party/WebKit/Source/modules/storage/Storage.idl b/third_party/WebKit/Source/modules/storage/Storage.idl |
index 0aded16c3e2a3ad9c53435d0cf4bb16ba37fd0c5..8e88534ad4cbb6cbd3360f11f3879bcc617bc683 100644 |
--- a/third_party/WebKit/Source/modules/storage/Storage.idl |
+++ b/third_party/WebKit/Source/modules/storage/Storage.idl |
@@ -27,7 +27,7 @@ |
[ |
] interface Storage { |
- // TODO(philipj): [NotEnumerable] should not be used anywhere in this interface. |
+ // TODO(foolip): [NotEnumerable] should not be used anywhere in this interface. |
[NotEnumerable, RaisesException=Getter] readonly attribute unsigned long length; |
[NotEnumerable, RaisesException] DOMString? key(unsigned long index); |
[LogActivity, NotEnumerable, RaisesException] DOMString? getItem(DOMString key); |
@@ -35,7 +35,7 @@ |
[LogActivity, NotEnumerable, RaisesException] void removeItem(DOMString key); |
[LogActivity, NotEnumerable, RaisesException] void clear(); |
- // TODO(philipj): Merge these into getItem/setItem/removeItem. |
+ // TODO(foolip): Merge these into getItem/setItem/removeItem. |
[RaisesException] getter DOMString (DOMString name); |
[RaisesException] setter DOMString (DOMString name, DOMString value); |
[RaisesException] deleter boolean (DOMString name); |