DeviceManagerComponent.cpp
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 
32 #include <nsCOMPtr.h>
33 #include <nsServiceManagerUtils.h>
34 #include <nsIAppStartupNotifier.h>
35 #include <nsICategoryManager.h>
36 #include <nsIGenericFactory.h>
37 
38 #include "DeviceManager.h"
39 
41 
42 // Registration functions for becoming a startup observer
43 static NS_METHOD
44 sbDeviceManagerObsoleteRegisterSelf(nsIComponentManager* aCompMgr,
45  nsIFile* aPath,
46  const char* registryLocation,
47  const char* componentType,
48  const nsModuleComponentInfo* info)
49 {
50  nsresult rv;
51  nsCOMPtr<nsICategoryManager> categoryManager =
52  do_GetService(NS_CATEGORYMANAGER_CONTRACTID, &rv);
53  NS_ENSURE_SUCCESS(rv, rv);
54 
55  rv = categoryManager->
56  AddCategoryEntry(APPSTARTUP_CATEGORY,
59  PR_TRUE, PR_TRUE, nsnull);
60  return rv;
61 }
62 
63 static NS_METHOD
64 sbDeviceManagerObsoleteUnregisterSelf(nsIComponentManager* aCompMgr,
65  nsIFile* aPath,
66  const char* registryLocation,
67  const nsModuleComponentInfo* info)
68 {
69  nsresult rv;
70  nsCOMPtr<nsICategoryManager> categoryManager =
71  do_GetService(NS_CATEGORYMANAGER_CONTRACTID, &rv);
72  NS_ENSURE_SUCCESS(rv, rv);
73 
74  rv = categoryManager->DeleteCategoryEntry(APPSTARTUP_CATEGORY,
76  PR_TRUE);
77 
78  return rv;
79 }
80 
81 static nsModuleComponentInfo components[] =
82 {
83  {
87  sbDeviceManagerObsoleteConstructor,
90  }
91 };
92 
93 NS_IMPL_NSGETMODULE(SongbirdDeviceManagerObsoleteModule, components)
_updateCookies aPath
static nsModuleComponentInfo components[]
#define SONGBIRD_OBSOLETE_DEVICEMANAGER_DESCRIPTION
Definition: DeviceManager.h:43
NS_GENERIC_FACTORY_CONSTRUCTOR_INIT(sbDeviceManagerObsolete, Initialize)
Songbird WMDevice Component Definition.
#define SONGBIRD_OBSOLETE_DEVICEMANAGER_CONTRACTID
Definition: DeviceManager.h:45
#define SONGBIRD_OBSOLETE_DEVICEMANAGER_CID
Definition: DeviceManager.h:49
NS_IMPL_NSGETMODULE(SongbirdIdentityServiceComponent, sbIdentityServiceComponent)
static NS_METHOD sbDeviceManagerObsoleteUnregisterSelf(nsIComponentManager *aCompMgr, nsIFile *aPath, const char *registryLocation, const nsModuleComponentInfo *info)
static NS_METHOD sbDeviceManagerObsoleteRegisterSelf(nsIComponentManager *aCompMgr, nsIFile *aPath, const char *registryLocation, const char *componentType, const nsModuleComponentInfo *info)
#define SONGBIRD_OBSOLETE_DEVICEMANAGER_CLASSNAME
Definition: DeviceManager.h:47