1999-06-17 03:36:50 +00:00
|
|
|
/* -*- Mode: C; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
|
|
|
/*
|
1999-06-03 22:02:39 +00:00
|
|
|
* The contents of this file are subject to the Netscape Public License
|
1999-06-17 03:36:50 +00:00
|
|
|
* 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
|
1999-06-03 22:02:39 +00:00
|
|
|
* http://www.mozilla.org/NPL/
|
|
|
|
*
|
1999-06-17 03:36:50 +00:00
|
|
|
* Software distributed under the License is distributed on an "AS IS" basis,
|
|
|
|
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
1999-06-03 22:02:39 +00:00
|
|
|
* for the specific language governing rights and limitations under the
|
1999-06-17 03:36:50 +00:00
|
|
|
* License.
|
|
|
|
*
|
|
|
|
* The Original Code is Mozilla Communicator client code,
|
|
|
|
* released March 31, 1998.
|
1999-06-03 22:02:39 +00:00
|
|
|
*
|
1999-06-17 03:36:50 +00:00
|
|
|
* The Initial Developer of the Original Code is Netscape Communications
|
|
|
|
* Corporation. Portions created by Netscape are
|
1999-06-03 22:02:39 +00:00
|
|
|
* Copyright (C) 1998 Netscape Communications Corporation. All Rights
|
|
|
|
* Reserved.
|
1999-06-17 03:36:50 +00:00
|
|
|
*
|
|
|
|
* Contributors:
|
|
|
|
* Douglas Turner <dougt@netscape.com>
|
|
|
|
* Daniel Veditz <dveditz@netscape.com>
|
1999-06-03 22:02:39 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "nsISupports.idl"
|
|
|
|
|
|
|
|
[uuid(eea90d40-b059-11d2-915e-c12b696c9333)]
|
1999-06-17 03:36:50 +00:00
|
|
|
interface nsIXPINotifier : nsISupports
|
1999-06-03 22:02:39 +00:00
|
|
|
{
|
|
|
|
void BeforeJavascriptEvaluation();
|
|
|
|
void AfterJavascriptEvaluation();
|
|
|
|
void InstallStarted([const] in string UIPackageName);
|
|
|
|
void ItemScheduled([const] in string message );
|
|
|
|
void InstallFinalization([const] in string message, in long itemNum, in long totNum );
|
|
|
|
void InstallAborted();
|
|
|
|
};
|