Bumping manifests a=b2g-bump
[gecko.git] / dom / datastore / nsIDataStore.idl
blobfc3d82598874ce0f820a17cb5f293b4f9bb37b06
1 /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* This Source Code Form is subject to the terms of the Mozilla Public
3 * License, v. 2.0. If a copy of the MPL was not distributed with this
4 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
6 #include "nsISupports.idl"
8 interface nsIDOMWindow;
10 // NOTE: This is a temporary interface.
11 // It will be removed in the next patches for rewriting DataStore in C++.
12 [scriptable, uuid(0b41fef5-14ba-48b0-923c-3d8fb64692ae)]
13 interface nsIDataStore : nsISupports
15 void init(in nsIDOMWindow window,
16 in DOMString name,
17 in DOMString manifestURL,
18 in boolean readOnly);
20 attribute jsval exposedObject;
22 void retrieveRevisionId(in jsval cb);