2011-01-20 03:06:13 -08:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim: set ts=2 et sw=2 tw=80: */
|
2012-05-21 04:12:37 -07:00
|
|
|
/* 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/. */
|
2011-01-20 03:06:13 -08:00
|
|
|
|
|
|
|
#include "nsAndroidNetworkLinkService.h"
|
|
|
|
#include "nsServiceManagerUtils.h"
|
|
|
|
#include "mozilla/Services.h"
|
|
|
|
|
|
|
|
#include "AndroidBridge.h"
|
|
|
|
|
2013-11-12 10:41:01 -08:00
|
|
|
using namespace mozilla::widget::android;
|
|
|
|
|
2011-01-20 03:06:13 -08:00
|
|
|
NS_IMPL_ISUPPORTS1(nsAndroidNetworkLinkService,
|
|
|
|
nsINetworkLinkService)
|
|
|
|
|
|
|
|
nsAndroidNetworkLinkService::nsAndroidNetworkLinkService()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
nsAndroidNetworkLinkService::~nsAndroidNetworkLinkService()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2011-09-28 23:19:26 -07:00
|
|
|
nsAndroidNetworkLinkService::GetIsLinkUp(bool *aIsUp)
|
2011-01-20 03:06:13 -08:00
|
|
|
{
|
2011-06-26 19:05:51 -07:00
|
|
|
if (!mozilla::AndroidBridge::Bridge()) {
|
|
|
|
// Fail soft here and assume a connection exists
|
|
|
|
NS_WARNING("GetIsLinkUp is not supported without a bridge connection");
|
2011-10-17 07:59:28 -07:00
|
|
|
*aIsUp = true;
|
2011-06-26 19:05:51 -07:00
|
|
|
return NS_OK;
|
|
|
|
}
|
2011-01-20 03:06:13 -08:00
|
|
|
|
2014-04-01 05:29:25 -07:00
|
|
|
*aIsUp = mozilla::widget::android::GeckoAppShell::IsNetworkLinkUp();
|
2011-01-20 03:06:13 -08:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2011-09-28 23:19:26 -07:00
|
|
|
nsAndroidNetworkLinkService::GetLinkStatusKnown(bool *aIsKnown)
|
2011-01-20 03:06:13 -08:00
|
|
|
{
|
|
|
|
NS_ENSURE_TRUE(mozilla::AndroidBridge::Bridge(), NS_ERROR_NOT_IMPLEMENTED);
|
|
|
|
|
2014-04-01 05:29:25 -07:00
|
|
|
*aIsKnown = mozilla::widget::android::GeckoAppShell::IsNetworkLinkKnown();
|
2011-01-20 03:06:13 -08:00
|
|
|
return NS_OK;
|
|
|
|
}
|
2011-07-10 15:24:05 -07:00
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2012-08-22 08:56:38 -07:00
|
|
|
nsAndroidNetworkLinkService::GetLinkType(uint32_t *aLinkType)
|
2011-07-10 15:24:05 -07:00
|
|
|
{
|
|
|
|
NS_ENSURE_ARG_POINTER(aLinkType);
|
|
|
|
|
2013-11-18 20:43:09 -08:00
|
|
|
if (!mozilla::AndroidBridge::Bridge()) {
|
|
|
|
// Fail soft here and assume a connection exists
|
|
|
|
NS_WARNING("GetLinkType is not supported without a bridge connection");
|
|
|
|
*aLinkType = nsINetworkLinkService::LINK_TYPE_UNKNOWN;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2014-04-01 05:29:25 -07:00
|
|
|
*aLinkType = mozilla::widget::android::GeckoAppShell::NetworkLinkType();
|
2011-07-10 15:24:05 -07:00
|
|
|
return NS_OK;
|
|
|
|
}
|