| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2009 Google Inc. All rights reserved. | 2 * Copyright (C) 2009 Google Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
| 6 * met: | 6 * met: |
| 7 * | 7 * |
| 8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
| (...skipping 164 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 175 { | 175 { |
| 176 window.URL.revokeObjectURL(objectUrl); | 176 window.URL.revokeObjectURL(objectUrl); |
| 177 } | 177 } |
| 178 setTimeout(cleanup, 3000); | 178 setTimeout(cleanup, 3000); |
| 179 }, | 179 }, |
| 180 | 180 |
| 181 sendMessageToBackend: function(message) | 181 sendMessageToBackend: function(message) |
| 182 { | 182 { |
| 183 }, | 183 }, |
| 184 | 184 |
| 185 sendMessageToFrontendHost: function(message) |
| 186 { |
| 187 }, |
| 188 |
| 185 recordActionTaken: function(actionCode) | 189 recordActionTaken: function(actionCode) |
| 186 { | 190 { |
| 187 }, | 191 }, |
| 188 | 192 |
| 189 recordPanelShown: function(panelCode) | 193 recordPanelShown: function(panelCode) |
| 190 { | 194 { |
| 191 }, | 195 }, |
| 192 | 196 |
| 193 recordSettingChanged: function(settingCode) | 197 recordSettingChanged: function(settingCode) |
| 194 { | 198 { |
| (...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 277 p.addStyleClass("help-section"); | 281 p.addStyleClass("help-section"); |
| 278 p.createChild("span").textContent = "Remote debugging has been terminated wi
th reason: "; | 282 p.createChild("span").textContent = "Remote debugging has been terminated wi
th reason: "; |
| 279 p.createChild("span", "error-message").textContent = reason; | 283 p.createChild("span", "error-message").textContent = reason; |
| 280 p.createChild("br"); | 284 p.createChild("br"); |
| 281 p.createChild("span").textContent = "Please re-attach to the new target."; | 285 p.createChild("span").textContent = "Please re-attach to the new target."; |
| 282 } | 286 } |
| 283 | 287 |
| 284 WebInspector.RemoteDebuggingTerminatedScreen.prototype = { | 288 WebInspector.RemoteDebuggingTerminatedScreen.prototype = { |
| 285 __proto__: WebInspector.HelpScreen.prototype | 289 __proto__: WebInspector.HelpScreen.prototype |
| 286 } | 290 } |
| OLD | NEW |