mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-08 04:27:37 +00:00
2c86aa101c
--HG-- rename : dom/mobileconnection/src/DOMMMIError.cpp => dom/mobileconnection/DOMMMIError.cpp rename : dom/mobileconnection/src/DOMMMIError.h => dom/mobileconnection/DOMMMIError.h rename : dom/mobileconnection/src/MobileCellInfo.cpp => dom/mobileconnection/MobileCellInfo.cpp rename : dom/mobileconnection/src/MobileCellInfo.h => dom/mobileconnection/MobileCellInfo.h rename : dom/mobileconnection/src/MobileConnection.cpp => dom/mobileconnection/MobileConnection.cpp rename : dom/mobileconnection/src/MobileConnection.h => dom/mobileconnection/MobileConnection.h rename : dom/mobileconnection/src/MobileConnectionArray.cpp => dom/mobileconnection/MobileConnectionArray.cpp rename : dom/mobileconnection/src/MobileConnectionArray.h => dom/mobileconnection/MobileConnectionArray.h rename : dom/mobileconnection/src/MobileConnectionInfo.cpp => dom/mobileconnection/MobileConnectionInfo.cpp rename : dom/mobileconnection/src/MobileConnectionInfo.h => dom/mobileconnection/MobileConnectionInfo.h rename : dom/mobileconnection/src/MobileNetworkInfo.cpp => dom/mobileconnection/MobileNetworkInfo.cpp rename : dom/mobileconnection/src/MobileNetworkInfo.h => dom/mobileconnection/MobileNetworkInfo.h
99 lines
1.9 KiB
C++
99 lines
1.9 KiB
C++
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
|
/* 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/. */
|
|
|
|
#ifndef mozilla_dom_MobileCellInfo_h
|
|
#define mozilla_dom_MobileCellInfo_h
|
|
|
|
#include "nsIMobileCellInfo.h"
|
|
#include "nsPIDOMWindow.h"
|
|
#include "nsWrapperCache.h"
|
|
|
|
namespace mozilla {
|
|
namespace dom {
|
|
|
|
class MobileCellInfo MOZ_FINAL : public nsISupports
|
|
, public nsWrapperCache
|
|
{
|
|
public:
|
|
NS_DECL_CYCLE_COLLECTING_ISUPPORTS
|
|
NS_DECL_CYCLE_COLLECTION_SCRIPT_HOLDER_CLASS(MobileCellInfo)
|
|
|
|
MobileCellInfo(nsPIDOMWindow* aWindow);
|
|
|
|
void
|
|
Update(nsIMobileCellInfo* aInfo);
|
|
|
|
nsPIDOMWindow*
|
|
GetParentObject() const
|
|
{
|
|
return mWindow;
|
|
}
|
|
|
|
virtual JSObject*
|
|
WrapObject(JSContext* aCx) MOZ_OVERRIDE;
|
|
|
|
// WebIDL interface
|
|
int32_t
|
|
GsmLocationAreaCode() const
|
|
{
|
|
return mGsmLocationAreaCode;
|
|
}
|
|
|
|
int64_t
|
|
GsmCellId() const
|
|
{
|
|
return mGsmCellId;
|
|
}
|
|
|
|
int32_t
|
|
CdmaBaseStationId() const
|
|
{
|
|
return mCdmaBaseStationId;
|
|
}
|
|
|
|
int32_t
|
|
CdmaBaseStationLatitude() const
|
|
{
|
|
return mCdmaBaseStationLatitude;
|
|
}
|
|
|
|
int32_t
|
|
CdmaBaseStationLongitude() const
|
|
{
|
|
return mCdmaBaseStationLongitude;
|
|
}
|
|
|
|
int32_t
|
|
CdmaSystemId() const
|
|
{
|
|
return mCdmaSystemId;
|
|
}
|
|
|
|
int32_t
|
|
CdmaNetworkId() const
|
|
{
|
|
return mCdmaNetworkId;
|
|
}
|
|
|
|
private:
|
|
~MobileCellInfo() {}
|
|
|
|
private:
|
|
nsCOMPtr<nsPIDOMWindow> mWindow;
|
|
int32_t mGsmLocationAreaCode;
|
|
int64_t mGsmCellId;
|
|
int32_t mCdmaBaseStationId;
|
|
int32_t mCdmaBaseStationLatitude;
|
|
int32_t mCdmaBaseStationLongitude;
|
|
int32_t mCdmaSystemId;
|
|
int32_t mCdmaNetworkId;
|
|
};
|
|
|
|
} // namespace dom
|
|
} // namespace mozilla
|
|
|
|
#endif // mozilla_dom_MobileCellInfo_h
|