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

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

Issue 23014006: Roll IDL to multivm@1350 (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/mediasource/SourceBuffer.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 20 matching lines...) Expand all
31 // Properties 31 // Properties
32 readonly attribute DOMString mode; 32 readonly attribute DOMString mode;
33 readonly attribute IDBDatabase db; 33 readonly attribute IDBDatabase db;
34 readonly attribute DOMError error; 34 readonly attribute DOMError error;
35 35
36 // Methods 36 // Methods
37 [RaisesException] IDBObjectStore objectStore (DOMString name); 37 [RaisesException] IDBObjectStore objectStore (DOMString name);
38 [RaisesException] void abort (); 38 [RaisesException] void abort ();
39 39
40 // Events 40 // Events
41 attribute EventListener onabort; 41 attribute EventHandler onabort;
42 attribute EventListener oncomplete; 42 attribute EventHandler oncomplete;
43 attribute EventListener onerror; 43 attribute EventHandler onerror;
44 }; 44 };
OLDNEW
« no previous file with comments | « modules/indexeddb/IDBRequest.idl ('k') | modules/mediasource/SourceBuffer.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698