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

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

Issue 9106002: Revert "Revert "Refresh dart:dom"" (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: fix dartc issues 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 27 matching lines...) Expand all
38 _didDestroyWorker(this, id); 38 _didDestroyWorker(this, id);
39 return; 39 return;
40 } 40 }
41 static void _didDestroyWorker(receiver, id) native; 41 static void _didDestroyWorker(receiver, id) native;
42 42
43 Object evaluate(String text) { 43 Object evaluate(String text) {
44 return _evaluate(this, text); 44 return _evaluate(this, text);
45 } 45 }
46 static Object _evaluate(receiver, text) native; 46 static Object _evaluate(receiver, text) native;
47 47
48 Object functionLocation(Object object) {
49 return _functionLocation(this, object);
50 }
51 static Object _functionLocation(receiver, object) native;
52
48 void inspect(Object objectId, Object hints) { 53 void inspect(Object objectId, Object hints) {
49 _inspect(this, objectId, hints); 54 _inspect(this, objectId, hints);
50 return; 55 return;
51 } 56 }
52 static void _inspect(receiver, objectId, hints) native; 57 static void _inspect(receiver, objectId, hints) native;
53 58
54 Object inspectedNode(int value) { 59 Object inspectedNode(int num_) {
55 return _inspectedNode(this, value); 60 return _inspectedNode(this, num_);
56 } 61 }
57 static Object _inspectedNode(receiver, value) native; 62 static Object _inspectedNode(receiver, num) native;
58 63
59 Object internalConstructorName(Object object) { 64 Object internalConstructorName(Object object) {
60 return _internalConstructorName(this, object); 65 return _internalConstructorName(this, object);
61 } 66 }
62 static Object _internalConstructorName(receiver, object) native; 67 static Object _internalConstructorName(receiver, object) native;
63 68
64 bool isHTMLAllCollection(Object object) { 69 bool isHTMLAllCollection(Object object) {
65 return _isHTMLAllCollection(this, object); 70 return _isHTMLAllCollection(this, object);
66 } 71 }
67 static bool _isHTMLAllCollection(receiver, object) native; 72 static bool _isHTMLAllCollection(receiver, object) native;
68 73
69 int nextWorkerId() { 74 int nextWorkerId() {
70 return _nextWorkerId(this); 75 return _nextWorkerId(this);
71 } 76 }
72 static int _nextWorkerId(receiver) native; 77 static int _nextWorkerId(receiver) native;
73 78
74 int storageId(Object storage) { 79 int storageId(Object storage) {
75 return _storageId(this, storage); 80 return _storageId(this, storage);
76 } 81 }
77 static int _storageId(receiver, storage) native; 82 static int _storageId(receiver, storage) native;
78 83
79 String type(Object object) { 84 String type(Object object) {
80 return _type(this, object); 85 return _type(this, object);
81 } 86 }
82 static String _type(receiver, object) native; 87 static String _type(receiver, object) native;
83 88
84 String get typeName() { return "InjectedScriptHost"; } 89 String get typeName() { return "InjectedScriptHost"; }
85 } 90 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698