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

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

Issue 9323028: Support 'Conditional' idl attribute. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 10 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 _InjectedScriptHostWrappingImplementation extends DOMWrapperBase implement s InjectedScriptHost {
8 _InjectedScriptHostWrappingImplementation() : super() {}
9
10 static create__InjectedScriptHostWrappingImplementation() native {
11 return new _InjectedScriptHostWrappingImplementation();
12 }
13
14 void clearConsoleMessages() {
15 _clearConsoleMessages(this);
16 return;
17 }
18 static void _clearConsoleMessages(receiver) native;
19
20 void copyText(String text) {
21 _copyText(this, text);
22 return;
23 }
24 static void _copyText(receiver, text) native;
25
26 int databaseId(Object database) {
27 return _databaseId(this, database);
28 }
29 static int _databaseId(receiver, database) native;
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
43 Object evaluate(String text) {
44 return _evaluate(this, text);
45 }
46 static Object _evaluate(receiver, text) native;
47
48 Object functionDetails(Object object) {
49 return _functionDetails(this, object);
50 }
51 static Object _functionDetails(receiver, object) native;
52
53 void inspect(Object objectId, Object hints) {
54 _inspect(this, objectId, hints);
55 return;
56 }
57 static void _inspect(receiver, objectId, hints) native;
58
59 Object inspectedNode(int num) {
60 return _inspectedNode(this, num);
61 }
62 static Object _inspectedNode(receiver, num) native;
63
64 Object internalConstructorName(Object object) {
65 return _internalConstructorName(this, object);
66 }
67 static Object _internalConstructorName(receiver, object) native;
68
69 bool isHTMLAllCollection(Object object) {
70 return _isHTMLAllCollection(this, object);
71 }
72 static bool _isHTMLAllCollection(receiver, object) native;
73
74 int nextWorkerId() {
75 return _nextWorkerId(this);
76 }
77 static int _nextWorkerId(receiver) native;
78
79 int storageId(Object storage) {
80 return _storageId(this, storage);
81 }
82 static int _storageId(receiver, storage) native;
83
84 String type(Object object) {
85 return _type(this, object);
86 }
87 static String _type(receiver, object) native;
88
89 String get typeName() { return "InjectedScriptHost"; }
90 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698