2012-01-09 14:28:47 -08:00
|
|
|
/* -*- Mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; tab-width: 40 -*- */
|
|
|
|
/* vim: set ts=2 et sw=2 tw=40: */
|
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/. */
|
2012-01-09 14:28:47 -08:00
|
|
|
|
|
|
|
#include "nsISupports.idl"
|
|
|
|
|
|
|
|
interface nsIDOMTelephony;
|
2012-07-18 20:26:49 -07:00
|
|
|
interface nsIDOMMozVoicemail;
|
2012-01-09 14:28:47 -08:00
|
|
|
|
2012-07-18 20:26:49 -07:00
|
|
|
[scriptable, builtinclass, uuid(4a297d39-2730-47b8-b406-666b3737aacb)]
|
2012-01-09 14:28:47 -08:00
|
|
|
interface nsIDOMNavigatorTelephony : nsISupports
|
|
|
|
{
|
|
|
|
readonly attribute nsIDOMTelephony mozTelephony;
|
2012-07-18 20:26:49 -07:00
|
|
|
readonly attribute nsIDOMMozVoicemail mozVoicemail;
|
2012-01-09 14:28:47 -08:00
|
|
|
};
|