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

Side by Side Diff: third_party/WebKit/WebCore/inspector/front-end/DebuggerIPC.js

Issue 16254: Move port/page/inspector bits to WebCore/Inspector (1/2) (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 11 years, 12 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
« no previous file with comments | « third_party/WebKit/WebCore/inspector/InspectorController.idl ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Property Changes:
Added: svn:mergeinfo
Merged /branches/chrome_webkit_merge_branch/src/webkit/port/page/inspector/DebuggerIPC.js:r3734-4217,4606-5108,5177-5263
OLDNEW
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
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 };
OLDNEW
« no previous file with comments | « third_party/WebKit/WebCore/inspector/InspectorController.idl ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698