blob: 7f70c28f1467d3eaa1372ad8c5baf5160c0a2028 [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
*/
module weinre {
interface WeinreTargetEvents {
void connectionCreated(string clientId, string targetId);
void connectionDestroyed(string clientId, string targetId);
void sendCallback(string callbackId, Object result);
};
}