gecko-dev/dom/mobileconnection/DOMMMIError.h
Birunthan Mohanathas 2c86aa101c Bug 1058101 - Flatten dom/mobileconnection/src/ into parent directory. r=mccr8
--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
2014-08-27 10:13:29 -07:00

58 lines
1.4 KiB
C++

/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* vim: set ts=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_MmiError_h
#define mozilla_dom_MmiError_h
#include "mozilla/dom/DOMError.h"
namespace mozilla {
namespace dom {
class DOMMMIError MOZ_FINAL : public DOMError
{
public:
NS_DECL_ISUPPORTS_INHERITED
NS_DECL_CYCLE_COLLECTION_CLASS_INHERITED(DOMMMIError, DOMError)
DOMMMIError(nsPIDOMWindow* aWindow, const nsAString& aName,
const nsAString& aMessage, const nsAString& aServiceCode,
const Nullable<int16_t>& aInfo);
virtual JSObject*
WrapObject(JSContext* aCx) MOZ_OVERRIDE;
// WebIDL interface
static already_AddRefed<DOMMMIError>
Constructor(const GlobalObject& aGlobal, const nsAString& aServiceCode,
const nsAString& aName, const nsAString& aMessage,
const Nullable<int16_t>& aInfo, ErrorResult& aRv);
void
GetServiceCode(nsString& aServiceCode) const
{
aServiceCode = mServiceCode;
}
Nullable<int16_t>
GetAdditionalInformation() const
{
return mInfo;
}
private:
~DOMMMIError() {}
private:
nsString mServiceCode;
Nullable<int16_t> mInfo;
};
} // namespace dom
} // namespace mozilla
#endif // mozilla_dom_MmiError_h