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

Side by Side Diff: client/dom/generated/src/wrapping/_NavigatorWrappingImplementation.dart

Issue 8548010: Wrapper dom changes in preparation for SVG (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: tweak Created 9 years, 1 month 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
1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 // WARNING: Do not edit - generated code. 5 // WARNING: Do not edit - generated code.
6 6
7 class _NavigatorWrappingImplementation extends DOMWrapperBase implements Navigat or { 7 class _NavigatorWrappingImplementation extends DOMWrapperBase implements Navigat or {
8 _NavigatorWrappingImplementation() : super() {} 8 _NavigatorWrappingImplementation() : super() {}
9 9
10 static create__NavigatorWrappingImplementation() native { 10 static create__NavigatorWrappingImplementation() native {
11 return new _NavigatorWrappingImplementation(); 11 return new _NavigatorWrappingImplementation();
12 } 12 }
13 13
14 String get appCodeName() { return _get__Navigator_appCodeName(this); } 14 String get appCodeName() { return _get_appCodeName(this); }
15 static String _get__Navigator_appCodeName(var _this) native; 15 static String _get_appCodeName(var _this) native;
16 16
17 String get appName() { return _get__Navigator_appName(this); } 17 String get appName() { return _get_appName(this); }
18 static String _get__Navigator_appName(var _this) native; 18 static String _get_appName(var _this) native;
19 19
20 String get appVersion() { return _get__Navigator_appVersion(this); } 20 String get appVersion() { return _get_appVersion(this); }
21 static String _get__Navigator_appVersion(var _this) native; 21 static String _get_appVersion(var _this) native;
22 22
23 bool get cookieEnabled() { return _get__Navigator_cookieEnabled(this); } 23 bool get cookieEnabled() { return _get_cookieEnabled(this); }
24 static bool _get__Navigator_cookieEnabled(var _this) native; 24 static bool _get_cookieEnabled(var _this) native;
25 25
26 String get language() { return _get__Navigator_language(this); } 26 String get language() { return _get_language(this); }
27 static String _get__Navigator_language(var _this) native; 27 static String _get_language(var _this) native;
28 28
29 DOMMimeTypeArray get mimeTypes() { return _get__Navigator_mimeTypes(this); } 29 DOMMimeTypeArray get mimeTypes() { return _get_mimeTypes(this); }
30 static DOMMimeTypeArray _get__Navigator_mimeTypes(var _this) native; 30 static DOMMimeTypeArray _get_mimeTypes(var _this) native;
31 31
32 bool get onLine() { return _get__Navigator_onLine(this); } 32 bool get onLine() { return _get_onLine(this); }
33 static bool _get__Navigator_onLine(var _this) native; 33 static bool _get_onLine(var _this) native;
34 34
35 String get platform() { return _get__Navigator_platform(this); } 35 String get platform() { return _get_platform(this); }
36 static String _get__Navigator_platform(var _this) native; 36 static String _get_platform(var _this) native;
37 37
38 DOMPluginArray get plugins() { return _get__Navigator_plugins(this); } 38 DOMPluginArray get plugins() { return _get_plugins(this); }
39 static DOMPluginArray _get__Navigator_plugins(var _this) native; 39 static DOMPluginArray _get_plugins(var _this) native;
40 40
41 String get product() { return _get__Navigator_product(this); } 41 String get product() { return _get_product(this); }
42 static String _get__Navigator_product(var _this) native; 42 static String _get_product(var _this) native;
43 43
44 String get productSub() { return _get__Navigator_productSub(this); } 44 String get productSub() { return _get_productSub(this); }
45 static String _get__Navigator_productSub(var _this) native; 45 static String _get_productSub(var _this) native;
46 46
47 String get userAgent() { return _get__Navigator_userAgent(this); } 47 String get userAgent() { return _get_userAgent(this); }
48 static String _get__Navigator_userAgent(var _this) native; 48 static String _get_userAgent(var _this) native;
49 49
50 String get vendor() { return _get__Navigator_vendor(this); } 50 String get vendor() { return _get_vendor(this); }
51 static String _get__Navigator_vendor(var _this) native; 51 static String _get_vendor(var _this) native;
52 52
53 String get vendorSub() { return _get__Navigator_vendorSub(this); } 53 String get vendorSub() { return _get_vendorSub(this); }
54 static String _get__Navigator_vendorSub(var _this) native; 54 static String _get_vendorSub(var _this) native;
55 55
56 void getStorageUpdates() { 56 void getStorageUpdates() {
57 _getStorageUpdates(this); 57 _getStorageUpdates(this);
58 return; 58 return;
59 } 59 }
60 static void _getStorageUpdates(receiver) native; 60 static void _getStorageUpdates(receiver) native;
61 61
62 bool javaEnabled() { 62 bool javaEnabled() {
63 return _javaEnabled(this); 63 return _javaEnabled(this);
64 } 64 }
65 static bool _javaEnabled(receiver) native; 65 static bool _javaEnabled(receiver) native;
66 66
67 String get typeName() { return "Navigator"; } 67 String get typeName() { return "Navigator"; }
68 } 68 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698