OLD | NEW |
1 | 1 |
2 class StorageEventJs extends EventJs implements StorageEvent native "*StorageEve
nt" { | 2 class _StorageEventJs extends _EventJs implements StorageEvent native "*StorageE
vent" { |
3 | 3 |
4 String get key() native "return this.key;"; | 4 String get key() native "return this.key;"; |
5 | 5 |
6 String get newValue() native "return this.newValue;"; | 6 String get newValue() native "return this.newValue;"; |
7 | 7 |
8 String get oldValue() native "return this.oldValue;"; | 8 String get oldValue() native "return this.oldValue;"; |
9 | 9 |
10 StorageJs get storageArea() native "return this.storageArea;"; | 10 _StorageJs get storageArea() native "return this.storageArea;"; |
11 | 11 |
12 String get url() native "return this.url;"; | 12 String get url() native "return this.url;"; |
13 | 13 |
14 void initStorageEvent(String typeArg, bool canBubbleArg, bool cancelableArg, S
tring keyArg, String oldValueArg, String newValueArg, String urlArg, StorageJs s
torageAreaArg) native; | 14 void initStorageEvent(String typeArg, bool canBubbleArg, bool cancelableArg, S
tring keyArg, String oldValueArg, String newValueArg, String urlArg, _StorageJs
storageAreaArg) native; |
15 } | 15 } |
OLD | NEW |