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

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

Issue 2015503002: Move TODO(philipj) to TODO(foolip) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 years, 7 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
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);

Powered by Google App Engine
This is Rietveld 408576698