sbRemoteAPIService.h
Go to the documentation of this file.
1 /*
2 //
3 // BEGIN SONGBIRD GPL
4 //
5 // This file is part of the Songbird web player.
6 //
7 // Copyright(c) 2005-2008 POTI, Inc.
8 // http://songbirdnest.com
9 //
10 // This file may be licensed under the terms of of the
11 // GNU General Public License Version 2 (the "GPL").
12 //
13 // Software distributed under the License is distributed
14 // on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, either
15 // express or implied. See the GPL for the specific language
16 // governing rights and limitations.
17 //
18 // You should have received a copy of the GPL along with this
19 // program. If not, go to http://www.gnu.org/licenses/gpl.html
20 // or write to the Free Software Foundation, Inc.,
21 // 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
22 //
23 // END SONGBIRD GPL
24 //
25  */
26 
27 #ifndef __SB_REMOTEAPI_SERVICE_H__
28 #define __SB_REMOTEAPI_SERVICE_H__
29 
30 #include "sbIRemoteAPIService.h"
31 
32 #include "nsCOMPtr.h"
33 #include "nsIObserver.h"
34 #include "nsIURI.h"
35 #include "nsStringGlue.h"
36 #include "nsCOMArray.h"
37 
38 #include "sbIDataRemote.h"
39 
40 #define SONGBIRD_REMOTEAPI_SERVICE_CONTRACTID \
41  "@songbirdnest.com/remoteapi/remoteapiservice;1"
42 #define SONGBIRD_REMOTEAPI_SERVICE_CLASSNAME \
43  "Songbird RemoteAPI State Service"
44 #define SONGBIRD_REMOTEAPI_SERVICE_CID \
45 { /* 8E380CB6-CFBC-4d80-9E4C-E035253243C9 */ \
46  0x8e380cb6, \
47  0xcfbc, \
48  0x4d80, \
49  {0x9e, 0x4c, 0xe0, 0x35, 0x25, 0x32, 0x43, 0xc9} \
50 }
51 
53  public nsIObserver
54 {
55 public:
57  NS_DECL_NSIOBSERVER
58  NS_DECL_SBIREMOTEAPISERVICE
59 
61 
62 public:
63  NS_IMETHOD Init();
64 
65 private:
66  ~sbRemoteAPIService();
67 
68 protected:
69  nsCOMPtr<nsIURI> mPlaybackControllerURI;
70 
71  // list of data remotes we're observing
72  nsCOMArray<sbIDataRemote> mDataRemotes;
73 };
74 
75 #endif // __SB_REMOTEAPI_SERVICE_H__
nsCOMPtr< nsIURI > mPlaybackControllerURI
nsCOMArray< sbIDataRemote > mDataRemotes
NS_DECL_ISUPPORTS NS_DECL_NSIOBSERVER NS_DECL_SBIREMOTEAPISERVICE sbRemoteAPIService()