1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/dom/webidl/IDBFactory.webidl Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,64 @@ 1.4 +/* -*- Mode: IDL; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ 1.5 +/* This Source Code Form is subject to the terms of the Mozilla Public 1.6 + * License, v. 2.0. If a copy of the MPL was not distributed with this file, 1.7 + * You can obtain one at http://mozilla.org/MPL/2.0/. 1.8 + * 1.9 + * The origin of this IDL file is 1.10 + * https://dvcs.w3.org/hg/IndexedDB/raw-file/tip/Overview.html#idl-def-IDBFactory 1.11 + * 1.12 + * Copyright © 2012 W3C® (MIT, ERCIM, Keio), All Rights Reserved. W3C 1.13 + * liability, trademark and document use rules apply. 1.14 + */ 1.15 + 1.16 +interface Principal; 1.17 + 1.18 +dictionary IDBOpenDBOptions 1.19 +{ 1.20 + [EnforceRange] unsigned long long version; 1.21 + StorageType storage; 1.22 +}; 1.23 + 1.24 +/** 1.25 + * Interface that defines the indexedDB property on a window. See 1.26 + * http://dvcs.w3.org/hg/IndexedDB/raw-file/tip/Overview.html#idl-def-IDBFactory 1.27 + * for more information. 1.28 + */ 1.29 +interface IDBFactory { 1.30 + [Throws] 1.31 + IDBOpenDBRequest 1.32 + open(DOMString name, 1.33 + [EnforceRange] unsigned long long version); 1.34 + 1.35 + [Throws] 1.36 + IDBOpenDBRequest 1.37 + open(DOMString name, 1.38 + optional IDBOpenDBOptions options); 1.39 + 1.40 + [Throws] 1.41 + IDBOpenDBRequest 1.42 + deleteDatabase(DOMString name, 1.43 + optional IDBOpenDBOptions options); 1.44 + 1.45 + [Throws] 1.46 + short 1.47 + cmp(any first, 1.48 + any second); 1.49 + 1.50 + [Throws, ChromeOnly] 1.51 + IDBOpenDBRequest 1.52 + openForPrincipal(Principal principal, 1.53 + DOMString name, 1.54 + [EnforceRange] unsigned long long version); 1.55 + 1.56 + [Throws, ChromeOnly] 1.57 + IDBOpenDBRequest 1.58 + openForPrincipal(Principal principal, 1.59 + DOMString name, 1.60 + optional IDBOpenDBOptions options); 1.61 + 1.62 + [Throws, ChromeOnly] 1.63 + IDBOpenDBRequest 1.64 + deleteForPrincipal(Principal principal, 1.65 + DOMString name, 1.66 + optional IDBOpenDBOptions options); 1.67 +};