Removing the obsolete nsIWidgetController interface.

This commit is contained in:
hyatt%netscape.com 1999-07-04 19:46:05 +00:00
parent 6e2d5189fb
commit a34b9faa23
4 changed files with 0 additions and 47 deletions

View File

@ -6,7 +6,6 @@ nsAppleEvents.h
nsAppShellCIDs.h
nsICmdLineService.h
nsIWebShellWindow.h
nsIWidgetController.h
nsFileLocations.h
nsIXULWindowCallbacks.h
nsIDOMXPConnectFactory.h

View File

@ -35,7 +35,6 @@ EXPORTS = \
nsIWebShellWindow.h \
nsAppShellCIDs.h \
nsICmdLineService.h \
nsIWidgetController.h \
nsIXULWindowCallbacks.h \
nsFileLocations.h \
nsIDOMXPConnectFactory.h \

View File

@ -32,7 +32,6 @@ EXPORTS = \
nsIWebShellWindow.h \
nsAppShellCIDs.h \
nsICmdLineService.h \
nsIWidgetController.h \
nsIXULWindowCallbacks.h \
nsIDOMXPConnectFactory.h \
nsFileLocations.h \

View File

@ -1,44 +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.0 (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.
*
* The Initial Developer of the Original Code is Netscape Communications
* Corporation. Portions created by Netscape are Copyright (C) 1998
* Netscape Communications Corporation. All Rights Reserved.
*/
#ifndef nsIWidgetController_h__
#define nsIWidgetController_h__
#include "nsCom.h"
#include "nsISupports.h"
/* forward declarations... */
class nsIDOMDocument;
// e5e5af70-8a38-11d2-9938-0080c7cb1080
#define NS_IWIDGETCONTROLLER_IID \
{ 0xe5e5af60, 0x8a38, 0x11d2, \
{0x99, 0x38, 0x00, 0x80, 0xc7, 0xcb, 0x10, 0x80} }
class nsIWidgetController : public nsISupports
{
public:
NS_DEFINE_STATIC_IID_ACCESSOR(NS_IWIDGETCONTROLLER_IID)
NS_IMETHOD Initialize(nsIDOMDocument* aDocument, nsISupports* aContainer) = 0;
};
#endif /* nsIWidgetController_h__ */