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

Side by Side Diff: third_party/WebKit/Source/modules/storage/Storage.idl

Issue 2321073002: binding: Let indexed interceptor falls through to named interceptor. (Closed)
Patch Set: Updated global-interface-listing expectations. Created 4 years, 3 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 unified diff | Download patch
« no previous file with comments | « third_party/WebKit/Source/modules/storage/Storage.cpp ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2008 Apple Inc. All Rights Reserved. 2 * Copyright (C) 2008 Apple Inc. All Rights Reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * 1. Redistributions of source code must retain the above copyright 7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer. 8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright 9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the 10 * notice, this list of conditions and the following disclaimer in the
(...skipping 21 matching lines...) Expand all
32 [NotEnumerable, RaisesException] DOMString? key(unsigned long index); 32 [NotEnumerable, RaisesException] DOMString? key(unsigned long index);
33 [LogActivity, NotEnumerable, RaisesException] DOMString? getItem(DOMString k ey); 33 [LogActivity, NotEnumerable, RaisesException] DOMString? getItem(DOMString k ey);
34 [LogActivity, NotEnumerable, RaisesException] void setItem(DOMString key, DO MString value); 34 [LogActivity, NotEnumerable, RaisesException] void setItem(DOMString key, DO MString value);
35 [LogActivity, NotEnumerable, RaisesException] void removeItem(DOMString key) ; 35 [LogActivity, NotEnumerable, RaisesException] void removeItem(DOMString key) ;
36 [LogActivity, NotEnumerable, RaisesException] void clear(); 36 [LogActivity, NotEnumerable, RaisesException] void clear();
37 37
38 // TODO(foolip): Merge these into getItem/setItem/removeItem. 38 // TODO(foolip): Merge these into getItem/setItem/removeItem.
39 [RaisesException] getter DOMString (DOMString name); 39 [RaisesException] getter DOMString (DOMString name);
40 [RaisesException] setter DOMString (DOMString name, DOMString value); 40 [RaisesException] setter DOMString (DOMString name, DOMString value);
41 [RaisesException] deleter boolean (DOMString name); 41 [RaisesException] deleter boolean (DOMString name);
42
43 // Non-standard APIs
44 [NotEnumerable, RaisesException] getter DOMString (unsigned long index);
45 [RaisesException] setter DOMString (unsigned long index, DOMString value);
46 [RaisesException] deleter boolean (unsigned long index);
47 }; 42 };
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/modules/storage/Storage.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698