Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(273)

Side by Side Diff: client/html/generated/html/dartium/StorageEvent.dart

Issue 9537001: Generate dart:html bindings for Dartium as well as Frog. All unittests now pass (or are disabled fo… (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1
2 class _StorageEventImpl extends _EventImpl implements StorageEvent {
3 _StorageEventImpl._wrap(ptr) : super._wrap(ptr);
4
5 String get key() => _wrap(_ptr.key);
6
7 String get newValue() => _wrap(_ptr.newValue);
8
9 String get oldValue() => _wrap(_ptr.oldValue);
10
11 Storage get storageArea() => _wrap(_ptr.storageArea);
12
13 String get url() => _wrap(_ptr.url);
14
15 void initStorageEvent(String typeArg, bool canBubbleArg, bool cancelableArg, S tring keyArg, String oldValueArg, String newValueArg, String urlArg, Storage sto rageAreaArg) {
16 _ptr.initStorageEvent(_unwrap(typeArg), _unwrap(canBubbleArg), _unwrap(cance lableArg), _unwrap(keyArg), _unwrap(oldValueArg), _unwrap(newValueArg), _unwrap( urlArg), _unwrap(storageAreaArg));
17 return;
18 }
19 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698