2013-08-01 04:04:59 +00:00
|
|
|
/* -*- Mode: IDL; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* 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/.
|
|
|
|
*/
|
|
|
|
|
2014-05-25 18:31:11 +00:00
|
|
|
[JSImplementation="@mozilla.org/phoneNumberService;1",
|
|
|
|
NavigatorProperty="mozPhoneNumberService",
|
|
|
|
CheckPermissions="phonenumberservice"]
|
2013-08-01 04:04:59 +00:00
|
|
|
interface PhoneNumberService {
|
2013-11-17 05:10:18 +00:00
|
|
|
DOMRequest fuzzyMatch([TreatNullAs=EmptyString] optional DOMString number1 = "",
|
|
|
|
[TreatNullAs=EmptyString] optional DOMString number2= "");
|
2013-08-01 04:04:59 +00:00
|
|
|
|
|
|
|
DOMString normalize(DOMString number);
|
|
|
|
};
|