diff options
Diffstat (limited to 'webkit/glue/devtools/js/devtools_host_stub.js')
-rw-r--r-- | webkit/glue/devtools/js/devtools_host_stub.js | 13 |
1 files changed, 4 insertions, 9 deletions
diff --git a/webkit/glue/devtools/js/devtools_host_stub.js b/webkit/glue/devtools/js/devtools_host_stub.js index 412850d..b43c802 100644 --- a/webkit/glue/devtools/js/devtools_host_stub.js +++ b/webkit/glue/devtools/js/devtools_host_stub.js @@ -13,16 +13,11 @@ RemoteDebuggerAgentStub = function() { }; -RemoteDebuggerAgentStub.prototype.DebugAttach = function() { -}; - -RemoteDebuggerAgentStub.prototype.DebugDetach = function() { -}; - -RemoteDebuggerAgentStub.prototype.DebugCommand = function() { +RemoteDebuggerAgentStub.prototype.DebugBreak = function() { }; -RemoteDebuggerAgentStub.prototype.DebugBreak = function() { +RemoteDebuggerAgentStub.prototype.GetContextId = function() { + RemoteDebuggerAgent.DidGetContextId(3); }; @@ -217,7 +212,7 @@ RemoteDebuggerCommandExecutorStub = function() { }; -RemoteDebuggerCommandExecutorStub.prototype.DebuggerCommand = function() { +RemoteDebuggerCommandExecutorStub.prototype.DebuggerCommand = function(cmd) { }; |