nsIQuotaCallbacks.idl (745B)
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 nsIQuotaRequest; 10 interface nsIQuotaUsageRequest; 11 12 [scriptable, function, uuid(c8a21a2a-17b9-4b63-ad95-e0fbcff5de18)] 13 interface nsIQuotaUsageCallback : nsISupports 14 { 15 void onUsageResult(in nsIQuotaUsageRequest aRequest); 16 }; 17 18 [scriptable, function, uuid(a08a28e2-5a74-4c84-8070-ed45a07eb013)] 19 interface nsIQuotaCallback : nsISupports 20 { 21 void onComplete(in nsIQuotaRequest aRequest); 22 };