| OLD | NEW |
| 1 | 1 |
| 2 class InspectorFrontendHost native "*InspectorFrontendHost" { | 2 class InspectorFrontendHost native "*InspectorFrontendHost" { |
| 3 | 3 |
| 4 void bringToFront() native; | 4 void bringToFront() native; |
| 5 | 5 |
| 6 bool canSaveAs() native; |
| 7 |
| 6 void closeWindow() native; | 8 void closeWindow() native; |
| 7 | 9 |
| 8 void copyText(String text) native; | 10 void copyText(String text) native; |
| 9 | 11 |
| 10 void disconnectFromBackend() native; | |
| 11 | |
| 12 String hiddenPanels() native; | 12 String hiddenPanels() native; |
| 13 | 13 |
| 14 void inspectedURLChanged(String newURL) native; | 14 void inspectedURLChanged(String newURL) native; |
| 15 | 15 |
| 16 String loadResourceSynchronously(String url) native; |
| 17 |
| 16 void loaded() native; | 18 void loaded() native; |
| 17 | 19 |
| 18 String localizedStringsURL() native; | 20 String localizedStringsURL() native; |
| 19 | 21 |
| 20 void moveWindowBy(num x, num y) native; | 22 void moveWindowBy(num x, num y) native; |
| 21 | 23 |
| 22 String platform() native; | 24 String platform() native; |
| 23 | 25 |
| 24 String port() native; | 26 String port() native; |
| 25 | 27 |
| 26 void recordActionTaken(int actionCode) native; | 28 void recordActionTaken(int actionCode) native; |
| 27 | 29 |
| 28 void recordPanelShown(int panelCode) native; | 30 void recordPanelShown(int panelCode) native; |
| 29 | 31 |
| 30 void recordSettingChanged(int settingChanged) native; | 32 void recordSettingChanged(int settingChanged) native; |
| 31 | 33 |
| 32 void requestAttachWindow() native; | 34 void requestAttachWindow() native; |
| 33 | 35 |
| 34 void requestDetachWindow() native; | 36 void requestDetachWindow() native; |
| 35 | 37 |
| 36 void saveAs(String fileName, String content) native; | 38 void saveAs(String fileName, String content) native; |
| 37 | 39 |
| 38 void sendMessageToBackend(String message) native; | 40 void sendMessageToBackend(String message) native; |
| 39 | 41 |
| 40 void setAttachedWindowHeight(int height) native; | 42 void setAttachedWindowHeight(int height) native; |
| 41 | 43 |
| 42 void setExtensionAPI(String script) native; | 44 void setInjectedScriptForOrigin(String origin, String script) native; |
| 43 | 45 |
| 44 void showContextMenu(MouseEvent event, Object items) native; | 46 void showContextMenu(MouseEvent event, Object items) native; |
| 45 | 47 |
| 46 var dartObjectLocalStorage; | 48 var dartObjectLocalStorage; |
| 47 | 49 |
| 48 String get typeName() native; | 50 String get typeName() native; |
| 49 } | 51 } |
| OLD | NEW |