blob: ae743e7b9e4ce4580fba5783d41bc8c062ef7de4 [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) 2011 IBM Corporation
*/
require ../common/Weinre
//-----------------------------------------------------------------------------
class WiInspectorImpl
//-----------------------------------------------------------------------------
method addScriptToEvaluateOnLoad(/*string*/ scriptSource, callback)
// callback: function()
Weinre.notImplemented(arguments.callee.signature)
//-----------------------------------------------------------------------------
method removeAllScriptsToEvaluateOnLoad(callback)
// callback: function()
Weinre.notImplemented(arguments.callee.signature)
//-----------------------------------------------------------------------------
method reloadPage(callback)
// callback: function()
Weinre.notImplemented(arguments.callee.signature)
//-----------------------------------------------------------------------------
method populateScriptObjects(callback)
// callback: function()
Weinre.notImplemented(arguments.callee.signature)
//-----------------------------------------------------------------------------
method openInInspectedWindow(/*string*/ url, callback)
// callback: function()
Weinre.notImplemented(arguments.callee.signature)
//-----------------------------------------------------------------------------
method setSearchingForNode(/*boolean*/ enabled, callback)
// callback: function(/*boolean*/ newState)
Weinre.notImplemented(arguments.callee.signature)
//-----------------------------------------------------------------------------
method didEvaluateForTestInFrontend(/*int*/ testCallId, /*string*/ jsonResult, callback)
// callback: function()
Weinre.notImplemented(arguments.callee.signature)
//-----------------------------------------------------------------------------
method highlightDOMNode(/*int*/ nodeId, callback)
var node = Weinre.nodeStore.getNode(nodeId)
if (!node) {
console.log(arguments.callee.signature + " passed an invalid nodeId: " + nodeId)
return
}
Weinre.elementHighlighter.on(node)
if (callback) {
Weinre.WeinreTargetCommands.sendClientCallback(callback)
}
//-----------------------------------------------------------------------------
method hideDOMNodeHighlight(callback)
Weinre.elementHighlighter.off()
if (callback) {
Weinre.WeinreTargetCommands.sendClientCallback(callback)
}
//-----------------------------------------------------------------------------
method highlightFrame(/*int*/ frameId, callback)
// callback: function()
Weinre.notImplemented(arguments.callee.signature)
//-----------------------------------------------------------------------------
method hideFrameHighlight(callback)
// callback: function()
Weinre.notImplemented(arguments.callee.signature)
//-----------------------------------------------------------------------------
method setExtraHeaders(/*any*/ headers, callback)
// callback: function()
Weinre.notImplemented(arguments.callee.signature)
//-----------------------------------------------------------------------------
method setUserAgentOverride(/*string*/ userAgent, callback)
// callback: function()
Weinre.notImplemented(arguments.callee.signature)
//-----------------------------------------------------------------------------
method getCookies(callback)
// callback: function(/*any[]*/ cookies, /*string*/ cookiesString)
Weinre.notImplemented(arguments.callee.signature)
//-----------------------------------------------------------------------------
method deleteCookie(/*string*/ cookieName, /*string*/ domain, callback)
// callback: function()
Weinre.notImplemented(arguments.callee.signature)
//-----------------------------------------------------------------------------
method startTimelineProfiler(callback)
// callback: function()
Weinre.notImplemented(arguments.callee.signature)
//-----------------------------------------------------------------------------
method stopTimelineProfiler(callback)
// callback: function()
Weinre.notImplemented(arguments.callee.signature)
//-----------------------------------------------------------------------------
method enableDebugger(callback)
// callback: function()
Weinre.notImplemented(arguments.callee.signature)
//-----------------------------------------------------------------------------
method disableDebugger(callback)
// callback: function()
Weinre.notImplemented(arguments.callee.signature)
//-----------------------------------------------------------------------------
method enableProfiler(callback)
// callback: function()
Weinre.notImplemented(arguments.callee.signature)
//-----------------------------------------------------------------------------
method disableProfiler(callback)
// callback: function()
Weinre.notImplemented(arguments.callee.signature)
//-----------------------------------------------------------------------------
method startProfiling(callback)
// callback: function()
Weinre.notImplemented(arguments.callee.signature)
//-----------------------------------------------------------------------------
method stopProfiling(callback)
// callback: function()
Weinre.notImplemented(arguments.callee.signature)