| OLD | NEW |
| 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 10 matching lines...) Expand all Loading... |
| 21 _copyText(this, text); | 21 _copyText(this, text); |
| 22 return; | 22 return; |
| 23 } | 23 } |
| 24 static void _copyText(receiver, text) native; | 24 static void _copyText(receiver, text) native; |
| 25 | 25 |
| 26 int databaseId(Object database) { | 26 int databaseId(Object database) { |
| 27 return _databaseId(this, database); | 27 return _databaseId(this, database); |
| 28 } | 28 } |
| 29 static int _databaseId(receiver, database) native; | 29 static int _databaseId(receiver, database) native; |
| 30 | 30 |
| 31 void didCreateWorker(int id, String url, bool isFakeWorker) { |
| 32 _didCreateWorker(this, id, url, isFakeWorker); |
| 33 return; |
| 34 } |
| 35 static void _didCreateWorker(receiver, id, url, isFakeWorker) native; |
| 36 |
| 37 void didDestroyWorker(int id) { |
| 38 _didDestroyWorker(this, id); |
| 39 return; |
| 40 } |
| 41 static void _didDestroyWorker(receiver, id) native; |
| 42 |
| 31 Object evaluate(String text) { | 43 Object evaluate(String text) { |
| 32 return _evaluate(this, text); | 44 return _evaluate(this, text); |
| 33 } | 45 } |
| 34 static Object _evaluate(receiver, text) native; | 46 static Object _evaluate(receiver, text) native; |
| 35 | 47 |
| 36 void inspect(Object objectId, Object hints) { | 48 void inspect(Object objectId, Object hints) { |
| 37 _inspect(this, objectId, hints); | 49 _inspect(this, objectId, hints); |
| 38 return; | 50 return; |
| 39 } | 51 } |
| 40 static void _inspect(receiver, objectId, hints) native; | 52 static void _inspect(receiver, objectId, hints) native; |
| 41 | 53 |
| 42 Object inspectedNode(int num) { | 54 Object inspectedNode(int num) { |
| 43 return _inspectedNode(this, num); | 55 return _inspectedNode(this, num); |
| 44 } | 56 } |
| 45 static Object _inspectedNode(receiver, num) native; | 57 static Object _inspectedNode(receiver, num) native; |
| 46 | 58 |
| 47 Object internalConstructorName(Object object) { | 59 Object internalConstructorName(Object object) { |
| 48 return _internalConstructorName(this, object); | 60 return _internalConstructorName(this, object); |
| 49 } | 61 } |
| 50 static Object _internalConstructorName(receiver, object) native; | 62 static Object _internalConstructorName(receiver, object) native; |
| 51 | 63 |
| 52 bool isHTMLAllCollection(Object object) { | 64 bool isHTMLAllCollection(Object object) { |
| 53 return _isHTMLAllCollection(this, object); | 65 return _isHTMLAllCollection(this, object); |
| 54 } | 66 } |
| 55 static bool _isHTMLAllCollection(receiver, object) native; | 67 static bool _isHTMLAllCollection(receiver, object) native; |
| 56 | 68 |
| 69 int nextWorkerId() { |
| 70 return _nextWorkerId(this); |
| 71 } |
| 72 static int _nextWorkerId(receiver) native; |
| 73 |
| 57 int storageId(Object storage) { | 74 int storageId(Object storage) { |
| 58 return _storageId(this, storage); | 75 return _storageId(this, storage); |
| 59 } | 76 } |
| 60 static int _storageId(receiver, storage) native; | 77 static int _storageId(receiver, storage) native; |
| 61 | 78 |
| 62 String type(Object object) { | 79 String type(Object object) { |
| 63 return _type(this, object); | 80 return _type(this, object); |
| 64 } | 81 } |
| 65 static String _type(receiver, object) native; | 82 static String _type(receiver, object) native; |
| 66 | 83 |
| 67 String get typeName() { return "InjectedScriptHost"; } | 84 String get typeName() { return "InjectedScriptHost"; } |
| 68 } | 85 } |
| OLD | NEW |