| 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 _InspectorFrontendHostWrappingImplementation extends DOMWrapperBase implem
ents InspectorFrontendHost { | 7 class _InspectorFrontendHostWrappingImplementation extends DOMWrapperBase implem
ents InspectorFrontendHost { |
| 8 _InspectorFrontendHostWrappingImplementation() : super() {} | 8 _InspectorFrontendHostWrappingImplementation() : super() {} |
| 9 | 9 |
| 10 static create__InspectorFrontendHostWrappingImplementation() native { | 10 static create__InspectorFrontendHostWrappingImplementation() native { |
| (...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 100 return; | 100 return; |
| 101 } | 101 } |
| 102 static void _requestAttachWindow(receiver) native; | 102 static void _requestAttachWindow(receiver) native; |
| 103 | 103 |
| 104 void requestDetachWindow() { | 104 void requestDetachWindow() { |
| 105 _requestDetachWindow(this); | 105 _requestDetachWindow(this); |
| 106 return; | 106 return; |
| 107 } | 107 } |
| 108 static void _requestDetachWindow(receiver) native; | 108 static void _requestDetachWindow(receiver) native; |
| 109 | 109 |
| 110 void requestSetDockSide(String side) { |
| 111 _requestSetDockSide(this, side); |
| 112 return; |
| 113 } |
| 114 static void _requestSetDockSide(receiver, side) native; |
| 115 |
| 110 void saveAs(String fileName, String content) { | 116 void saveAs(String fileName, String content) { |
| 111 _saveAs(this, fileName, content); | 117 _saveAs(this, fileName, content); |
| 112 return; | 118 return; |
| 113 } | 119 } |
| 114 static void _saveAs(receiver, fileName, content) native; | 120 static void _saveAs(receiver, fileName, content) native; |
| 115 | 121 |
| 116 void sendMessageToBackend(String message) { | 122 void sendMessageToBackend(String message) { |
| 117 _sendMessageToBackend(this, message); | 123 _sendMessageToBackend(this, message); |
| 118 return; | 124 return; |
| 119 } | 125 } |
| (...skipping 12 matching lines...) Expand all Loading... |
| 132 static void _setInjectedScriptForOrigin(receiver, origin, script) native; | 138 static void _setInjectedScriptForOrigin(receiver, origin, script) native; |
| 133 | 139 |
| 134 void showContextMenu(MouseEvent event, Object items) { | 140 void showContextMenu(MouseEvent event, Object items) { |
| 135 _showContextMenu(this, event, items); | 141 _showContextMenu(this, event, items); |
| 136 return; | 142 return; |
| 137 } | 143 } |
| 138 static void _showContextMenu(receiver, event, items) native; | 144 static void _showContextMenu(receiver, event, items) native; |
| 139 | 145 |
| 140 String get typeName() { return "InspectorFrontendHost"; } | 146 String get typeName() { return "InspectorFrontendHost"; } |
| 141 } | 147 } |
| OLD | NEW |