| OLD | NEW |
| 1 | 1 |
| 2 class PositionErrorJs extends DOMTypeJs implements PositionError native "*Positi
onError" { | 2 class _PositionErrorJs extends _DOMTypeJs implements PositionError native "*Posi
tionError" { |
| 3 | 3 |
| 4 static final int PERMISSION_DENIED = 1; | 4 static final int PERMISSION_DENIED = 1; |
| 5 | 5 |
| 6 static final int POSITION_UNAVAILABLE = 2; | 6 static final int POSITION_UNAVAILABLE = 2; |
| 7 | 7 |
| 8 static final int TIMEOUT = 3; | 8 static final int TIMEOUT = 3; |
| 9 | 9 |
| 10 int get code() native "return this.code;"; | 10 int get code() native "return this.code;"; |
| 11 | 11 |
| 12 String get message() native "return this.message;"; | 12 String get message() native "return this.message;"; |
| 13 } | 13 } |
| OLD | NEW |