https://github.com/mozilla/gecko-dev
Raw File
Tip revision: c0500f52f22bf97c83d9c60161c8b2cfa7016b88 authored by Ryan VanderMeulen on 27 February 2015, 18:00:36 UTC
Backed out changeset 5fb28d06581c (bug 1136855) for landing on the wrong branch.
Tip revision: c0500f5
DOMMMIError.h
/* -*- 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

  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
back to top