From 0986f52eb244684bfcbfa08eb272f205793da04a Mon Sep 17 00:00:00 2001 From: "valeski%netscape.com" Date: Thu, 27 May 1999 21:13:34 +0000 Subject: [PATCH] removed these two because they've been added to the proper idl directory git-svn-id: svn://10.0.0.236/trunk@32966 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/netwerk/base/public/nsIHttpNotify.idl | 48 ------------------- .../base/public/nsINetAppNegotiater.idl | 45 ----------------- 2 files changed, 93 deletions(-) delete mode 100644 mozilla/netwerk/base/public/nsIHttpNotify.idl delete mode 100644 mozilla/netwerk/base/public/nsINetAppNegotiater.idl diff --git a/mozilla/netwerk/base/public/nsIHttpNotify.idl b/mozilla/netwerk/base/public/nsIHttpNotify.idl deleted file mode 100644 index 491ae86affd..00000000000 --- a/mozilla/netwerk/base/public/nsIHttpNotify.idl +++ /dev/null @@ -1,48 +0,0 @@ -/* -*- Mode: IDL; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- - * - * The contents of this file are subject to the Netscape Public License - * Version 1.0 (the "NPL"); you may not use this file except in - * compliance with the NPL. You may obtain a copy of the NPL at - * http://www.mozilla.org/NPL/ - * - * Software distributed under the NPL is distributed on an "AS IS" basis, - * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the NPL - * for the specific language governing rights and limitations under the - * NPL. - * - * The Initial Developer of this code under the NPL is Netscape - * Communications Corporation. Portions created by Netscape are - * Copyright (C) 1998 Netscape Communications Corporation. All Rights - * Reserved. - */ - -/* The internal networking library http interface. External modules - * desiring to receive notification of internal http events implement this - * interface, and pass it into the nsINetModuleMgr Register and Unregister - * methods. - */ - -#include "nsISupports.idl" - -[scriptable, uuid(8D9430E0-0FB4-11d3-9DE6-0010A4053FD0)] -interface nsIHttpNotify : nsISupports, nsIObserver { - // Once all http headers have been downloaded and parsed out of the - // stream, this method is called. - // - // ARGUMENTS: - // aContext: An nsIProtocolConnection pointer. - // aHeaders: All http headers (as defined in - // http://www.w3.org/Protocols/HTTP/1.0/spec.html#Message-Headers) - // - // RETURNS: nsresult - void OnHeaders(in nsISupports *aContext, in string aHeaders); - - // Before an http request is sent to the server, this method is called - // to determine whether the external module wants to set any headers. - // ARGUMENTS: - // aContext: An nsIProtocolConnection pointer. - // aHeaders: Any headers the external module wants set for this request. - // - // RETURNS: nsresult - void SetHeaders(in nsISupports *aContext, out string aHeaders); -}; \ No newline at end of file diff --git a/mozilla/netwerk/base/public/nsINetAppNegotiater.idl b/mozilla/netwerk/base/public/nsINetAppNegotiater.idl deleted file mode 100644 index 34a5ed5b928..00000000000 --- a/mozilla/netwerk/base/public/nsINetAppNegotiater.idl +++ /dev/null @@ -1,45 +0,0 @@ -/* -*- Mode: IDL; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- - * - * The contents of this file are subject to the Netscape Public License - * Version 1.0 (the "NPL"); you may not use this file except in - * compliance with the NPL. You may obtain a copy of the NPL at - * http://www.mozilla.org/NPL/ - * - * Software distributed under the NPL is distributed on an "AS IS" basis, - * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the NPL - * for the specific language governing rights and limitations under the - * NPL. - * - * The Initial Developer of this code under the NPL is Netscape - * Communications Corporation. Portions created by Netscape are - * Copyright (C) 1998 Netscape Communications Corporation. All Rights - * Reserved. - */ - -#include "nsISupports.idl" - -/* The nsINetAppNegotiater interface provides an api that allows dialogs - * to be thrown outside of netlib (perhaps on another thread). - * When dialogs would - * be thrown on another thread, NSPR syncronous events are used. - * All the Async* calls are asyncronous calls. - */ - -[scriptable, uuid(8D9430E1-0FB4-11d3-9DE6-0010A4053FD0)] -interface nsINetAppNegotiater : nsISupports { - // Causes a modal dialog to be thrown. - // - // ARGUMENTS: - // aIUsername: a username, if any. - // aOUsername: a new username. - // aPassword: a password. - // - // RETURNS: nsresult - void DlgPromptUsernamePassword(in string aIUsername, out string aOUsername, out string aPassword); - - // Initializes a progress Dialog. - void AsyncProgressInit(); - - // Updates status. - void AsyncProgress(); -}; \ No newline at end of file