| OLD | NEW |
| 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 /** | 5 /** |
| 6 * @fileoverview Implementation of debugger inter-process communication. | 6 * @fileoverview Implementation of debugger inter-process communication. |
| 7 * Debugger UI can send messages to the DebuggerHost object living in | 7 * Debugger UI can send messages to the DebuggerHost object living in |
| 8 * Chrome browser process. The messages are either processed by DebuggerHost | 8 * Chrome browser process. The messages are either processed by DebuggerHost |
| 9 * itself or trigger IPC message(such as break, evaluate script etc) from | 9 * itself or trigger IPC message(such as break, evaluate script etc) from |
| 10 * browser process to the renderer where the v8 instance being debugged | 10 * browser process to the renderer where the v8 instance being debugged |
| (...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 100 } else { | 100 } else { |
| 101 ui.appendText(msg.event + " failed: DebugShell.singleton == null"); | 101 ui.appendText(msg.event + " failed: DebugShell.singleton == null"); |
| 102 } | 102 } |
| 103 } else { | 103 } else { |
| 104 ui.appendText("Unknown event: " + msg.event); | 104 ui.appendText("Unknown event: " + msg.event); |
| 105 } | 105 } |
| 106 } else { | 106 } else { |
| 107 ui.appendText("Unknown message type: " + msg.type); | 107 ui.appendText("Unknown message type: " + msg.type); |
| 108 } | 108 } |
| 109 }; | 109 }; |
| OLD | NEW |