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

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

Issue 2786203002: Roll 50: Copied IDLs, PYTHON scripts from WebKit removed deleted files in WebCore (Closed)
Patch Set: Created 3 years, 8 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
« no previous file with comments | « modules/indexeddb/IDBObjectStore.idl ('k') | modules/indexeddb/IDBTransaction.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 31
32 enum IDBRequestReadyState { 32 enum IDBRequestReadyState {
33 "pending", 33 "pending",
34 "done" 34 "done"
35 }; 35 };
36 36
37 // http://www.w3.org/TR/IndexedDB/#idl-def-IDBRequest 37 // http://www.w3.org/TR/IndexedDB/#idl-def-IDBRequest
38 38
39 [ 39 [
40 Exposed=(Window,Worker), 40 Exposed=(Window,Worker),
41 ActiveDOMObject, 41 DependentLifetime,
42 GarbageCollected, 42 GarbageCollected,
43 ] interface IDBRequest : EventTarget { 43 ] interface IDBRequest : EventTarget {
44 [RaisesException=Getter, CachedAttribute=isResultDirty] readonly attribute a ny result; 44 [RaisesException=Getter, CachedAttribute=isResultDirty] readonly attribute a ny result;
45 [RaisesException=Getter, Measure] readonly attribute DOMError error; 45 [RaisesException=Getter] readonly attribute DOMException error;
46 46
47 readonly attribute any source; 47 readonly attribute any source;
48 readonly attribute IDBTransaction transaction; 48 readonly attribute IDBTransaction transaction;
49 49
50 // States 50 // States
51 readonly attribute IDBRequestReadyState readyState; 51 readonly attribute IDBRequestReadyState readyState;
52 52
53 // Events 53 // Events
54 attribute EventHandler onsuccess; 54 attribute EventHandler onsuccess;
55 attribute EventHandler onerror; 55 attribute EventHandler onerror;
56 }; 56 };
OLDNEW
« no previous file with comments | « modules/indexeddb/IDBObjectStore.idl ('k') | modules/indexeddb/IDBTransaction.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698