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

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

Issue 9181010: Refactor DOM generator. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 11 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
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 _InjectedScriptHostWrappingImplementation extends DOMWrapperBase implement s InjectedScriptHost { 7 class _InjectedScriptHostWrappingImplementation extends DOMWrapperBase implement s InjectedScriptHost {
8 _InjectedScriptHostWrappingImplementation() : super() {} 8 _InjectedScriptHostWrappingImplementation() : super() {}
9 9
10 static create__InjectedScriptHostWrappingImplementation() native { 10 static create__InjectedScriptHostWrappingImplementation() native {
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
49 return _functionLocation(this, object); 49 return _functionLocation(this, object);
50 } 50 }
51 static Object _functionLocation(receiver, object) native; 51 static Object _functionLocation(receiver, object) native;
52 52
53 void inspect(Object objectId, Object hints) { 53 void inspect(Object objectId, Object hints) {
54 _inspect(this, objectId, hints); 54 _inspect(this, objectId, hints);
55 return; 55 return;
56 } 56 }
57 static void _inspect(receiver, objectId, hints) native; 57 static void _inspect(receiver, objectId, hints) native;
58 58
59 Object inspectedNode(int num_) { 59 Object inspectedNode(int num) {
60 return _inspectedNode(this, num_); 60 return _inspectedNode(this, num);
61 } 61 }
62 static Object _inspectedNode(receiver, num) native; 62 static Object _inspectedNode(receiver, num) native;
63 63
64 Object internalConstructorName(Object object) { 64 Object internalConstructorName(Object object) {
65 return _internalConstructorName(this, object); 65 return _internalConstructorName(this, object);
66 } 66 }
67 static Object _internalConstructorName(receiver, object) native; 67 static Object _internalConstructorName(receiver, object) native;
68 68
69 bool isHTMLAllCollection(Object object) { 69 bool isHTMLAllCollection(Object object) {
70 return _isHTMLAllCollection(this, object); 70 return _isHTMLAllCollection(this, object);
(...skipping 10 matching lines...) Expand all
81 } 81 }
82 static int _storageId(receiver, storage) native; 82 static int _storageId(receiver, storage) native;
83 83
84 String type(Object object) { 84 String type(Object object) {
85 return _type(this, object); 85 return _type(this, object);
86 } 86 }
87 static String _type(receiver, object) native; 87 static String _type(receiver, object) native;
88 88
89 String get typeName() { return "InjectedScriptHost"; } 89 String get typeName() { return "InjectedScriptHost"; }
90 } 90 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698