From 4e2588b5255df15eed6c63f5644c8c0a3d039191 Mon Sep 17 00:00:00 2001 From: "warren%netscape.com" Date: Tue, 30 Nov 1999 05:18:39 +0000 Subject: [PATCH] Removed nsICapabilities.idl -- subsumed by nsIInterfaceRequestor.idl --- xpcom/ds/nsICapabilities.idl | 41 ------------------------------------ 1 file changed, 41 deletions(-) delete mode 100644 xpcom/ds/nsICapabilities.idl diff --git a/xpcom/ds/nsICapabilities.idl b/xpcom/ds/nsICapabilities.idl deleted file mode 100644 index 2922437d0b1a..000000000000 --- a/xpcom/ds/nsICapabilities.idl +++ /dev/null @@ -1,41 +0,0 @@ -/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ -/* - * The contents of this file are subject to the Netscape Public - * License Version 1.1 (the "License"); you may not use this file - * except in compliance with the License. You may obtain a copy of - * the License at http://www.mozilla.org/NPL/ - * - * Software distributed under the License is distributed on an "AS - * IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or - * implied. See the License for the specific language governing - * rights and limitations under the License. - * - * The Original Code is Mozilla Communicator client code, - * released March 31, 1998. - * - * The Initial Developer of the Original Code is Netscape Communications - * Corporation. Portions created by Netscape are - * Copyright (C) 1998-1999 Netscape Communications Corporation. All - * Rights Reserved. - * - * Contributor(s): - * - */ - -#include "nsISupports.idl" - -/** - * This interface provides a means to access "capabilities" of an object - * via an IID. The QueryCapability method differs from QueryInterface in - * that the returned object need not be another interface on the current - * object, nor does it need to be reflexive with respect to QueryCapability, - * i.e. if you can get from A to B via QueryCapability, you can't necessarily - * get from B to A. - */ -[scriptable, uuid(764336d6-9bcd-11d3-8cd9-0060b0fc14a3)] -interface nsICapabilities : nsISupports -{ - void QueryCapability(in nsIIDRef uuid, - [iid_is(uuid), retval] out nsQIResult result); -}; -