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

Side by Side Diff: modules/indexeddb/IDBTransaction.idl

Issue 19605006: Roll IDL to multivm@1316 (Closed) Base URL: https://dart.googlecode.com/svn/third_party/WebCore
Patch Set: Created 7 years, 4 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 | « modules/indexeddb/IDBRequest.idl ('k') | modules/indexeddb/IDBVersionChangeEvent.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) 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 15 matching lines...) Expand all
26 26
27 [ 27 [
28 ActiveDOMObject, 28 ActiveDOMObject,
29 EventTarget 29 EventTarget
30 ] interface IDBTransaction { 30 ] interface IDBTransaction {
31 31
32 // Properties 32 // Properties
33 readonly attribute DOMString mode; 33 readonly attribute DOMString mode;
34 readonly attribute IDBDatabase db; 34 readonly attribute IDBDatabase db;
35 readonly attribute DOMError error; 35 readonly attribute DOMError error;
36 [TreatReturnedNullStringAs=Undefined] readonly attribute DOMString webkitErr orMessage;
37 36
38 // Methods 37 // Methods
39 [RaisesException] IDBObjectStore objectStore (DOMString name); 38 [RaisesException] IDBObjectStore objectStore (DOMString name);
40 [RaisesException] void abort (); 39 [RaisesException] void abort ();
41 40
42 // Events 41 // Events
43 attribute EventListener onabort; 42 attribute EventListener onabort;
44 attribute EventListener oncomplete; 43 attribute EventListener oncomplete;
45 attribute EventListener onerror; 44 attribute EventListener onerror;
46 // EventTarget interface 45 // EventTarget interface
47 void addEventListener(DOMString type, 46 void addEventListener(DOMString type,
48 EventListener listener, 47 EventListener listener,
49 optional boolean useCapture); 48 optional boolean useCapture);
50 void removeEventListener(DOMString type, 49 void removeEventListener(DOMString type,
51 EventListener listener, 50 EventListener listener,
52 optional boolean useCapture); 51 optional boolean useCapture);
53 [RaisesException] boolean dispatchEvent(Event evt); 52 [RaisesException] boolean dispatchEvent(Event evt);
54 }; 53 };
OLDNEW
« no previous file with comments | « modules/indexeddb/IDBRequest.idl ('k') | modules/indexeddb/IDBVersionChangeEvent.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698