1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/netwerk/wifi/nsIWifiListener.idl Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,29 @@ 1.4 +/* This Source Code Form is subject to the terms of the Mozilla Public 1.5 + * License, v. 2.0. If a copy of the MPL was not distributed with this 1.6 + * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ 1.7 + 1.8 +#include "nsISupports.idl" 1.9 + 1.10 +interface nsIWifiAccessPoint; 1.11 + 1.12 +[scriptable, uuid(BCD4BEDE-F4A5-4A62-9071-D7A60174E376)] 1.13 +interface nsIWifiListener : nsISupports 1.14 +{ 1.15 + /* 1.16 + * Called when the list of access points changes. 1.17 + * 1.18 + * @param accessPoints An array of nsIWifiAccessPoint representing all 1.19 + * access points in view. 1.20 + */ 1.21 + 1.22 + void onChange([array, size_is(aLen)] in nsIWifiAccessPoint accessPoints, in unsigned long aLen); 1.23 + 1.24 + /* 1.25 + * Called when there is a problem with listening to wifi 1.26 + * 1.27 + * @param error the error which caused this event. The 1.28 + * error values will be nsresult codes. 1.29 + */ 1.30 + 1.31 + void onError(in nsresult error); 1.32 +};