sbIntlModule.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 
27 #include "nsIGenericFactory.h"
28 #include <nsICategoryManager.h>
29 #include <nsIGenericFactory.h>
30 #include <nsServiceManagerUtils.h>
31 
32 #include "sbStringTransform.h"
33 #include <sbIStringTransform.h>
34 
36 
41 static NS_METHOD
42 sbStringTransformRegister(nsIComponentManager* aCompMgr,
43  nsIFile* aPath,
44  const char* aLoaderStr,
45  const char* aType,
46  const nsModuleComponentInfo* aInfo)
47 {
48  nsresult rv;
49 
50  // Get the category manager.
51  nsCOMPtr<nsICategoryManager> categoryManager =
52  do_GetService(NS_CATEGORYMANAGER_CONTRACTID,
53  &rv);
54  NS_ENSURE_SUCCESS(rv, rv);
55 
56  // Add self to the app-startup category.
57  rv = categoryManager->AddCategoryEntry
58  ("app-startup",
61  PR_TRUE,
62  PR_TRUE,
63  nsnull);
64  NS_ENSURE_SUCCESS(rv, rv);
65 
66  return NS_OK;
67 }
68 
69 
74 static NS_METHOD
75 sbStringTransformUnregister(nsIComponentManager* aCompMgr,
76  nsIFile* aPath,
77  const char* aLoaderStr,
78  const nsModuleComponentInfo* aInfo)
79 {
80  nsresult rv;
81 
82  // Get the category manager.
83  nsCOMPtr<nsICategoryManager> categoryManager =
84  do_GetService(NS_CATEGORYMANAGER_CONTRACTID,
85  &rv);
86  NS_ENSURE_SUCCESS(rv, rv);
87 
88  // Delete self from the app-startup category.
89  rv = categoryManager->DeleteCategoryEntry("app-startup",
91  PR_TRUE);
92  NS_ENSURE_SUCCESS(rv, rv);
93 
94  return NS_OK;
95 }
96 
97 
98 static const nsModuleComponentInfo components[] =
99 {
100  {
104  sbStringTransformConstructor,
107  },
108 };
109 
110 NS_IMPL_NSGETMODULE(SongbirdIntlModule, components)
static NS_METHOD sbStringTransformUnregister(nsIComponentManager *aCompMgr, nsIFile *aPath, const char *aLoaderStr, const nsModuleComponentInfo *aInfo)
#define SB_STRINGTRANSFORM_DESCRIPTION
return NS_OK
_updateCookies aPath
static const nsModuleComponentInfo components[]
NS_GENERIC_FACTORY_CONSTRUCTOR_INIT(sbStringTransform, Init)
static NS_METHOD sbStringTransformRegister(nsIComponentManager *aCompMgr, nsIFile *aPath, const char *aLoaderStr, const char *aType, const nsModuleComponentInfo *aInfo)
function Init()
NS_IMPL_NSGETMODULE(SongbirdIdentityServiceComponent, sbIdentityServiceComponent)
#define SB_STRINGTRANSFORM_CLASSNAME
#define SB_STRINGTRANSFORM_CONTRACTID
#define SB_STRINGTRANSFORM_CID