nsISDBCallbacks.idl (726B)
1 /* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ 2 /* vim: set ts=2 et sw=2 tw=80: */ 3 /* This Source Code Form is subject to the terms of the Mozilla Public 4 * License, v. 2.0. If a copy of the MPL was not distributed with this 5 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ 6 7 #include "nsISupports.idl" 8 9 interface nsISDBConnection; 10 interface nsISDBRequest; 11 12 [scriptable, function, uuid(8cbd576c-c6bf-42fd-96ee-3b824dafe1d4)] 13 interface nsISDBCallback : nsISupports 14 { 15 void onComplete(in nsISDBRequest aRequest); 16 }; 17 18 [scriptable, function, uuid(e0821d43-62b9-40fe-99f8-ff9ab3184cbf)] 19 interface nsISDBCloseCallback : nsISupports 20 { 21 void onClose(in nsISDBConnection aConnection); 22 };