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/. */
|
2008-07-15 16:37:48 -07:00
|
|
|
|
|
|
|
|
|
|
|
#include "domstubs.idl"
|
|
|
|
|
2013-09-24 01:40:25 -07:00
|
|
|
// undef the GetMessage macro defined in winuser.h from the MS Platform SDK
|
|
|
|
%{C++
|
|
|
|
#ifdef GetMessage
|
|
|
|
#undef GetMessage
|
|
|
|
#endif
|
|
|
|
%}
|
|
|
|
|
2013-07-16 06:11:29 -07:00
|
|
|
[scriptable, uuid(85255CC3-07BA-49FD-BC9B-18D2963DAF7F)]
|
2008-08-14 09:35:49 -07:00
|
|
|
interface nsIDOMGeoPositionError : nsISupports
|
|
|
|
{
|
2008-11-12 08:31:25 -08:00
|
|
|
const unsigned short PERMISSION_DENIED = 1;
|
|
|
|
const unsigned short POSITION_UNAVAILABLE = 2;
|
|
|
|
const unsigned short TIMEOUT = 3;
|
|
|
|
|
2008-08-14 09:35:49 -07:00
|
|
|
readonly attribute short code;
|
2013-07-16 06:11:29 -07:00
|
|
|
readonly attribute AString message;
|
2008-07-15 16:37:48 -07:00
|
|
|
};
|