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

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

Issue 1151023004: Add use counters to determine the fate of DOMError (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 6 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 | « Source/modules/indexeddb/IDBRequest.idl ('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) 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 26 matching lines...) Expand all
37 [ 37 [
38 Exposed=(Window,Worker), 38 Exposed=(Window,Worker),
39 ActiveDOMObject, 39 ActiveDOMObject,
40 GarbageCollected 40 GarbageCollected
41 ] interface IDBTransaction : EventTarget { 41 ] interface IDBTransaction : EventTarget {
42 42
43 // Properties 43 // Properties
44 [RuntimeEnabled=IndexedDBExperimental] readonly attribute DOMStringList obje ctStoreNames; 44 [RuntimeEnabled=IndexedDBExperimental] readonly attribute DOMStringList obje ctStoreNames;
45 readonly attribute IDBTransactionMode mode; 45 readonly attribute IDBTransactionMode mode;
46 readonly attribute IDBDatabase db; 46 readonly attribute IDBDatabase db;
47 readonly attribute DOMError error; 47 [Measure] readonly attribute DOMError error;
48 48
49 // Methods 49 // Methods
50 [RaisesException] IDBObjectStore objectStore (DOMString name); 50 [RaisesException] IDBObjectStore objectStore (DOMString name);
51 [RaisesException] void abort (); 51 [RaisesException] void abort ();
52 52
53 // Events 53 // Events
54 attribute EventHandler onabort; 54 attribute EventHandler onabort;
55 attribute EventHandler oncomplete; 55 attribute EventHandler oncomplete;
56 attribute EventHandler onerror; 56 attribute EventHandler onerror;
57 }; 57 };
OLDNEW
« no previous file with comments | « Source/modules/indexeddb/IDBRequest.idl ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698