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

Side by Side Diff: client/html/generated/src/wrapping/_NavigatorWrappingImplementation.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 // 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
3 // BSD-style license that can be found in the LICENSE file.
4
5 // WARNING: Do not edit - generated code.
6
7 class NavigatorWrappingImplementation extends DOMWrapperBase implements Navigato r {
8 NavigatorWrappingImplementation._wrap(ptr) : super._wrap(ptr) {}
9
10 String get appCodeName() { return _ptr.appCodeName; }
11
12 String get appName() { return _ptr.appName; }
13
14 String get appVersion() { return _ptr.appVersion; }
15
16 bool get cookieEnabled() { return _ptr.cookieEnabled; }
17
18 String get language() { return _ptr.language; }
19
20 DOMMimeTypeArray get mimeTypes() { return LevelDom.wrapDOMMimeTypeArray(_ptr.m imeTypes); }
21
22 bool get onLine() { return _ptr.onLine; }
23
24 String get platform() { return _ptr.platform; }
25
26 DOMPluginArray get plugins() { return LevelDom.wrapDOMPluginArray(_ptr.plugins ); }
27
28 String get product() { return _ptr.product; }
29
30 String get productSub() { return _ptr.productSub; }
31
32 String get userAgent() { return _ptr.userAgent; }
33
34 String get vendor() { return _ptr.vendor; }
35
36 String get vendorSub() { return _ptr.vendorSub; }
37
38 void getStorageUpdates() {
39 _ptr.getStorageUpdates();
40 return;
41 }
42
43 bool javaEnabled() {
44 return _ptr.javaEnabled();
45 }
46 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698