1999-06-17 07:36:50 +04:00
|
|
|
/* -*- Mode: C; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
|
|
|
/*
|
1999-11-06 06:43:54 +03:00
|
|
|
* 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/
|
1999-06-17 07:36:50 +04:00
|
|
|
*
|
1999-11-06 06:43:54 +03: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 for the specific language governing
|
|
|
|
* rights and limitations under the License.
|
1999-06-17 07:36:50 +04:00
|
|
|
*
|
Embeddable XPI landing, including bugs 76424, 83702, 88757, 97691, 98458, 105083, 105085, 113149,124467,124470 r=syd (and others) sr=alecf, a=drivers
2002-03-23 15:14:51 +03:00
|
|
|
* The Original Code is Mozilla Communicator client code,
|
|
|
|
* released March 31, 1998.
|
1999-06-17 07:36:50 +04:00
|
|
|
*
|
Embeddable XPI landing, including bugs 76424, 83702, 88757, 97691, 98458, 105083, 105085, 113149,124467,124470 r=syd (and others) sr=alecf, a=drivers
2002-03-23 15:14:51 +03:00
|
|
|
* The Initial Developer of the Original Code is Netscape Communications
|
1999-11-06 06:43:54 +03:00
|
|
|
* Corporation. Portions created by Netscape are
|
2000-05-05 10:23:11 +04:00
|
|
|
* Copyright (C) 2000 Netscape Communications Corporation. All
|
1999-11-06 06:43:54 +03:00
|
|
|
* Rights Reserved.
|
1999-06-17 07:36:50 +04:00
|
|
|
*
|
Embeddable XPI landing, including bugs 76424, 83702, 88757, 97691, 98458, 105083, 105085, 113149,124467,124470 r=syd (and others) sr=alecf, a=drivers
2002-03-23 15:14:51 +03:00
|
|
|
* Contributor(s):
|
1999-06-17 07:36:50 +04:00
|
|
|
* Douglas Turner <dougt@netscape.com>
|
|
|
|
* Daniel Veditz <dveditz@netscape.com>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "nsISupports.idl"
|
|
|
|
|
|
|
|
[uuid(eea90d40-b059-11d2-915e-c12b696c9333)]
|
2000-05-05 10:23:11 +04:00
|
|
|
interface nsIXPIListener : nsISupports
|
1999-06-17 07:36:50 +04:00
|
|
|
{
|
Embeddable XPI landing, including bugs 76424, 83702, 88757, 97691, 98458, 105083, 105085, 113149,124467,124470 r=syd (and others) sr=alecf, a=drivers
2002-03-23 15:14:51 +03:00
|
|
|
void onInstallStart(in wstring URL);
|
|
|
|
void onInstallDone(in wstring URL, in long status);
|
2003-04-30 10:49:04 +04:00
|
|
|
void onPackageNameSet(in wstring URL, in wstring UIPackageName, in wstring version);
|
Embeddable XPI landing, including bugs 76424, 83702, 88757, 97691, 98458, 105083, 105085, 113149,124467,124470 r=syd (and others) sr=alecf, a=drivers
2002-03-23 15:14:51 +03:00
|
|
|
void onItemScheduled(in wstring message );
|
|
|
|
void onFinalizeProgress(in wstring message, in long itemNum, in long totNum );
|
|
|
|
void onLogComment(in wstring comment);
|
1999-06-17 07:36:50 +04:00
|
|
|
};
|