blob: b49848321a9510529aa05c7bb6b49159fa3ece27 [file] [log] [blame]
/*
* weinre is available under *either* the terms of the modified BSD license *or* the
* MIT License (2008). See http://opensource.org/licenses/alphabetical for full text.
*
* Copyright (c) 2010, 2011 IBM Corporation
*/
require ../common/Weinre
//-----------------------------------------------------------------------------
//
//-----------------------------------------------------------------------------
class WebInspectorDebugHandlerImpl
//-----------------------------------------------------------------------------
//
//-----------------------------------------------------------------------------
method setBreakpoint(/*string*/ sourceID, /*int*/ lineNumber, /*boolean*/ enabled, /*string*/ condition, callback)
// callback: function()
Weinre.notImplemented(arguments.callee.signature)
//-----------------------------------------------------------------------------
//
//-----------------------------------------------------------------------------
method removeBreakpoint(/*string*/ sourceID, /*int*/ lineNumber, callback)
// callback: function()
Weinre.notImplemented(arguments.callee.signature)
//-----------------------------------------------------------------------------
//
//-----------------------------------------------------------------------------
method activateBreakpoints(callback)
// callback: function()
Weinre.notImplemented(arguments.callee.signature)
//-----------------------------------------------------------------------------
//
//-----------------------------------------------------------------------------
method deactivateBreakpoints(callback)
// callback: function()
Weinre.notImplemented(arguments.callee.signature)
//-----------------------------------------------------------------------------
//
//-----------------------------------------------------------------------------
method pause(callback)
// callback: function()
Weinre.notImplemented(arguments.callee.signature)
//-----------------------------------------------------------------------------
//
//-----------------------------------------------------------------------------
method resume(callback)
// callback: function()
Weinre.notImplemented(arguments.callee.signature)
//-----------------------------------------------------------------------------
//
//-----------------------------------------------------------------------------
method stepOverStatement(callback)
// callback: function()
Weinre.notImplemented(arguments.callee.signature)
//-----------------------------------------------------------------------------
//
//-----------------------------------------------------------------------------
method stepIntoStatement(callback)
// callback: function()
Weinre.notImplemented(arguments.callee.signature)
//-----------------------------------------------------------------------------
//
//-----------------------------------------------------------------------------
method stepOutOfFunction(callback)
// callback: function()
Weinre.notImplemented(arguments.callee.signature)
//-----------------------------------------------------------------------------
//
//-----------------------------------------------------------------------------
method setPauseOnExceptionsState(/*int*/ pauseOnExceptionsState, callback)
// callback: function()
Weinre.notImplemented(arguments.callee.signature)
//-----------------------------------------------------------------------------
//
//-----------------------------------------------------------------------------
method editScriptSource(/*string*/ sourceID, /*string*/ newContent, callback)
// callback: function()
Weinre.notImplemented(arguments.callee.signature)
//-----------------------------------------------------------------------------
//
//-----------------------------------------------------------------------------
method getScriptSource(/*string*/ sourceID, callback)
// callback: function()
Weinre.notImplemented(arguments.callee.signature)