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

Side by Side Diff: core/storage/Storage.idl

Issue 540533002: Roll IDL to Dartium37 (r181268) (Closed) Base URL: https://dart.googlecode.com/svn/third_party/WebCore
Patch Set: Created 6 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 | Annotate | Revision Log
« no previous file with comments | « core/speech/SpeechInputResultList.idl ('k') | core/svg/SVGAngle.idl » ('j') | 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 18 matching lines...) Expand all
29 [NotEnumerable, RaisesException] getter DOMString (unsigned long index); 29 [NotEnumerable, RaisesException] getter DOMString (unsigned long index);
30 [RaisesException] setter DOMString (unsigned long index, DOMString value); 30 [RaisesException] setter DOMString (unsigned long index, DOMString value);
31 [RaisesException] deleter boolean (unsigned long index); 31 [RaisesException] deleter boolean (unsigned long index);
32 32
33 [RaisesException] getter DOMString (DOMString name); 33 [RaisesException] getter DOMString (DOMString name);
34 [RaisesException] setter DOMString (DOMString name, DOMString value); 34 [RaisesException] setter DOMString (DOMString name, DOMString value);
35 [RaisesException] deleter boolean (DOMString name); 35 [RaisesException] deleter boolean (DOMString name);
36 36
37 [NotEnumerable, RaisesException=Getter] readonly attribute unsigned long len gth; 37 [NotEnumerable, RaisesException=Getter] readonly attribute unsigned long len gth;
38 [NotEnumerable, RaisesException, TreatReturnedNullStringAs=Null] DOMString k ey(unsigned long index); 38 [NotEnumerable, RaisesException, TreatReturnedNullStringAs=Null] DOMString k ey(unsigned long index);
39 [ActivityLogging=ForIsolatedWorlds, NotEnumerable, PerWorldBindings, RaisesE xception, TreatReturnedNullStringAs=Null] DOMString getItem(DOMString key); 39 [LogActivity, NotEnumerable, RaisesException, TreatReturnedNullStringAs=Null ] DOMString getItem(DOMString key);
40 [ActivityLogging=ForIsolatedWorlds, NotEnumerable, RaisesException, PerWorld Bindings] void setItem(DOMString key, DOMString data); 40 [LogActivity, NotEnumerable, RaisesException] void setItem(DOMString key, DO MString data);
41 [ActivityLogging=ForIsolatedWorlds, NotEnumerable, PerWorldBindings, RaisesE xception] void removeItem(DOMString key); 41 [LogActivity, NotEnumerable, RaisesException] void removeItem(DOMString key) ;
42 [ActivityLogging=ForIsolatedWorlds, NotEnumerable, PerWorldBindings, RaisesE xception] void clear(); 42 [LogActivity, NotEnumerable, RaisesException] void clear();
43 }; 43 };
OLDNEW
« no previous file with comments | « core/speech/SpeechInputResultList.idl ('k') | core/svg/SVGAngle.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698