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

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

Issue 725023002: Remove Dictionary::getWithUndefinedOrNullCheck() (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 1 month 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 | « Source/modules/indexeddb/IDBDatabase.cpp ('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 22 matching lines...) Expand all
33 "versionchange" 33 "versionchange"
34 }; 34 };
35 35
36 [ 36 [
37 ActiveDOMObject, 37 ActiveDOMObject,
38 GarbageCollected, 38 GarbageCollected,
39 ] interface IDBDatabase : EventTarget { 39 ] interface IDBDatabase : EventTarget {
40 readonly attribute DOMString name; 40 readonly attribute DOMString name;
41 [CallWith=ScriptState] readonly attribute any version; 41 [CallWith=ScriptState] readonly attribute any version;
42 readonly attribute DOMStringList objectStoreNames; 42 readonly attribute DOMStringList objectStoreNames;
43 // FIXME: |options| should be an IDL dictionary (IDBObjectStoreParameters)
bashi 2014/11/14 02:19:53 IDBObjectStoreParameters is an IDL dictionary whic
43 [RaisesException] IDBObjectStore createObjectStore(DOMString name, optional Dictionary options); 44 [RaisesException] IDBObjectStore createObjectStore(DOMString name, optional Dictionary options);
44 [RaisesException] void deleteObjectStore(DOMString name); 45 [RaisesException] void deleteObjectStore(DOMString name);
45 // FIXME: should be union type http://crbug.com/240176 46 // FIXME: should be union type http://crbug.com/240176
46 [CallWith=ScriptState, RaisesException] IDBTransaction transaction(DOMString storeName, optional IDBTransactionMode mode = "readonly"); 47 [CallWith=ScriptState, RaisesException] IDBTransaction transaction(DOMString storeName, optional IDBTransactionMode mode = "readonly");
47 [CallWith=ScriptState, RaisesException] IDBTransaction transaction(sequence< DOMString> storeNames, optional IDBTransactionMode mode = "readonly"); 48 [CallWith=ScriptState, RaisesException] IDBTransaction transaction(sequence< DOMString> storeNames, optional IDBTransactionMode mode = "readonly");
48 [CallWith=ScriptState, RaisesException] IDBTransaction transaction(DOMString List storeNames, optional IDBTransactionMode mode = "readonly"); 49 [CallWith=ScriptState, RaisesException] IDBTransaction transaction(DOMString List storeNames, optional IDBTransactionMode mode = "readonly");
49 void close(); 50 void close();
50 attribute EventHandler onabort; 51 attribute EventHandler onabort;
51 attribute EventHandler onclose; 52 attribute EventHandler onclose;
52 attribute EventHandler onerror; 53 attribute EventHandler onerror;
53 attribute EventHandler onversionchange; 54 attribute EventHandler onversionchange;
54 }; 55 };
OLDNEW
« no previous file with comments | « Source/modules/indexeddb/IDBDatabase.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698