2013-09-06 23:19:53 -07:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
|
|
|
|
#include "mozilla/dom/telephony/TelephonyFactory.h"
|
2013-10-29 01:12:38 -07:00
|
|
|
#if defined(MOZ_WIDGET_GONK) && defined(MOZ_B2G_RIL)
|
2014-06-03 07:15:25 -07:00
|
|
|
#include "nsIGonkTelephonyService.h"
|
2013-09-06 23:19:57 -07:00
|
|
|
#endif
|
2013-09-06 23:19:53 -07:00
|
|
|
#include "nsServiceManagerUtils.h"
|
|
|
|
#include "nsXULAppAPI.h"
|
2014-06-03 07:15:25 -07:00
|
|
|
#include "ipc/TelephonyIPCService.h"
|
2013-09-06 23:19:53 -07:00
|
|
|
|
|
|
|
USING_TELEPHONY_NAMESPACE
|
|
|
|
|
2014-06-03 07:15:25 -07:00
|
|
|
/* static */ already_AddRefed<nsITelephonyService>
|
|
|
|
TelephonyFactory::CreateTelephonyService()
|
2013-09-06 23:19:53 -07:00
|
|
|
{
|
2014-06-03 07:15:30 -07:00
|
|
|
nsCOMPtr<nsITelephonyService> service;
|
2013-09-06 23:19:53 -07:00
|
|
|
|
|
|
|
if (XRE_GetProcessType() == GeckoProcessType_Content) {
|
2014-06-03 07:15:30 -07:00
|
|
|
service = new TelephonyIPCService();
|
2013-10-29 01:12:38 -07:00
|
|
|
#if defined(MOZ_WIDGET_GONK) && defined(MOZ_B2G_RIL)
|
2013-09-06 23:19:57 -07:00
|
|
|
} else {
|
2014-06-03 07:15:30 -07:00
|
|
|
service = do_CreateInstance(GONK_TELEPHONY_SERVICE_CONTRACTID);
|
2013-09-06 23:19:57 -07:00
|
|
|
#endif
|
2013-09-06 23:19:53 -07:00
|
|
|
}
|
|
|
|
|
2014-06-03 07:15:30 -07:00
|
|
|
return service.forget();
|
2013-09-06 23:19:53 -07:00
|
|
|
}
|