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

Side by Side Diff: third_party/WebCore/Modules/indexeddb/IDBTransaction.idl

Issue 10381128: Roll IDL to multivm@516 (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2010 Google Inc. All rights reserved. 2 * Copyright (C) 2010 Google Inc. All rights reserved.
3 * Copyright (C) 2011 Apple Inc. All rights reserved. 3 * Copyright (C) 2011 Apple Inc. All rights reserved.
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions 6 * modification, are permitted provided that the following conditions
7 * are met: 7 * are met:
8 * 8 *
9 * 1. Redistributions of source code must retain the above copyright 9 * 1. Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer. 10 * notice, this list of conditions and the following disclaimer.
(...skipping 13 matching lines...) Expand all
24 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 24 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25 */ 25 */
26 26
27 module storage { 27 module storage {
28 28
29 interface [ 29 interface [
30 Conditional=INDEXED_DATABASE, 30 Conditional=INDEXED_DATABASE,
31 ActiveDOMObject, 31 ActiveDOMObject,
32 EventTarget 32 EventTarget
33 ] IDBTransaction { 33 ] IDBTransaction {
34 // Modes 34 // FIXME: Eventually remove legacy enum constants, see https://bugs.webk it.org/show_bug.cgi?id=85315
35 const unsigned short READ_ONLY = 0; 35 const unsigned short READ_ONLY = 0;
36 const unsigned short READ_WRITE = 1; 36 const unsigned short READ_WRITE = 1;
37 const unsigned short VERSION_CHANGE = 2; 37 const unsigned short VERSION_CHANGE = 2;
38 38
39 // Properties 39 // Properties
40 readonly attribute unsigned short mode; 40 readonly attribute DOMString mode;
41 readonly attribute IDBDatabase db; 41 readonly attribute IDBDatabase db;
42 // Methods 42 // Methods
43 IDBObjectStore objectStore (in DOMString name) 43 IDBObjectStore objectStore (in DOMString name)
44 raises (IDBDatabaseException); 44 raises (IDBDatabaseException);
45 void abort (); 45 void abort ();
46 // Events 46 // Events
47 attribute EventListener onabort; 47 attribute EventListener onabort;
48 attribute EventListener oncomplete; 48 attribute EventListener oncomplete;
49 attribute EventListener onerror; 49 attribute EventListener onerror;
50 // EventTarget interface 50 // EventTarget interface
51 void addEventListener(in DOMString type, 51 void addEventListener(in DOMString type,
52 in EventListener listener, 52 in EventListener listener,
53 in [Optional] boolean useCapture); 53 in [Optional] boolean useCapture);
54 void removeEventListener(in DOMString type, 54 void removeEventListener(in DOMString type,
55 in EventListener listener, 55 in EventListener listener,
56 in [Optional] boolean useCapture); 56 in [Optional] boolean useCapture);
57 boolean dispatchEvent(in Event evt) 57 boolean dispatchEvent(in Event evt)
58 raises(EventException); 58 raises(EventException);
59 }; 59 };
60 } 60 }
OLDNEW
« no previous file with comments | « third_party/WebCore/Modules/indexeddb/IDBRequest.idl ('k') | third_party/WebCore/Modules/mediastream/LocalMediaStream.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698