Bug 496271, automation config for Tb2.0.0.22 build1, p=joduinn, r=me
[mozilla-1.9.git] / toolkit / system / dbus / nsNetworkManagerListener.h
blob875c48d94b970df8be1d3b11e45294c319e88760
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /* vim:expandtab:shiftwidth=4:tabstop=4:
3 */
4 /* ***** BEGIN LICENSE BLOCK *****
5 * Version: NPL 1.1/GPL 2.0/LGPL 2.1
8 * The contents of this file are subject to the Mozilla Public
9 * License Version 1.1 (the "License"); you may not use this file
10 * except in compliance with the License. You may obtain a copy of
11 * the License at http://www.mozilla.org/MPL/
13 * Software distributed under the License is distributed on an "AS
14 * IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
15 * implied. See the License for the specific language governing
16 * rights and limitations under the License.
18 * The Original Code is Novell code.
20 * The Initial Developer of the Original Code is Novell, Inc.
21 * Portions created by the Initial Developer are Copyright (C) 2006
22 * the Initial Developer. All Rights Reserved.
24 * Original Author: Robert O'Callahan (rocallahan@novell.com)
26 * Contributor(s):
28 * Alternatively, the contents of this file may be used under the terms of
29 * either the GNU General Public License Version 2 or later (the "GPL"), or
30 * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
31 * in which case the provisions of the GPL or the LGPL are applicable instead
32 * of those above. If you wish to allow use of your version of this file only
33 * under the terms of either the GPL or the LGPL, and not to allow others to
34 * use your version of this file under the terms of the NPL, indicate your
35 * decision by deleting the provisions above and replace them with the notice
36 * and other provisions required by the GPL or the LGPL. If you do not delete
37 * the provisions above, a recipient may use your version of this file under
38 * the terms of any one of the NPL, the GPL or the LGPL.
40 * ***** END LICENSE BLOCK ***** */
42 #ifndef NSNETWORKMANAGERLISTENER_H_
43 #define NSNETWORKMANAGERLISTENER_H_
45 #include "nsINetworkLinkService.h"
46 #include "nsDBusService.h"
48 class nsNetworkManagerListener : public nsINetworkLinkService,
49 public DBusClient {
50 public:
51 NS_DECL_ISUPPORTS
52 NS_DECL_NSINETWORKLINKSERVICE
54 nsNetworkManagerListener();
55 virtual ~nsNetworkManagerListener();
57 nsresult Init();
59 virtual void RegisterWithConnection(DBusConnection* connection);
60 virtual void UnregisterWithConnection(DBusConnection* connection);
61 virtual PRBool HandleMessage(DBusMessage* msg);
63 /**
64 * This gets called when NetworkManager sends us a StateChange signal,
65 * or when we receive a reply to our inquiry.
66 * The message contains the current NMState.
68 void UpdateNetworkStatus(DBusMessage* message);
70 private:
71 void NotifyNetworkStatusObservers();
73 nsCOMPtr<nsDBusService> mDBUS;
74 PRPackedBool mLinkUp;
75 PRPackedBool mNetworkManagerActive;
76 PRPackedBool mOK;
77 PRPackedBool mManageIOService;
80 #endif /*NSNETWORKMANAGERLISTENER_H_*/