| OLD | NEW |
| 1 | 1 |
| 2 class PerformanceNavigationJs extends DOMTypeJs implements PerformanceNavigation
native "*PerformanceNavigation" { | 2 class _PerformanceNavigationJs extends _DOMTypeJs implements PerformanceNavigati
on native "*PerformanceNavigation" { |
| 3 | 3 |
| 4 static final int TYPE_BACK_FORWARD = 2; | 4 static final int TYPE_BACK_FORWARD = 2; |
| 5 | 5 |
| 6 static final int TYPE_NAVIGATE = 0; | 6 static final int TYPE_NAVIGATE = 0; |
| 7 | 7 |
| 8 static final int TYPE_RELOAD = 1; | 8 static final int TYPE_RELOAD = 1; |
| 9 | 9 |
| 10 static final int TYPE_RESERVED = 255; | 10 static final int TYPE_RESERVED = 255; |
| 11 | 11 |
| 12 int get redirectCount() native "return this.redirectCount;"; | 12 int get redirectCount() native "return this.redirectCount;"; |
| 13 | 13 |
| 14 int get type() native "return this.type;"; | 14 int get type() native "return this.type;"; |
| 15 } | 15 } |
| OLD | NEW |