Home | History | Annotate | Download | only in debugger

Lines Matching defs:DevToolsProtocolHandler

17 scoped_refptr<DevToolsProtocolHandler> DevToolsProtocolHandler::Start(
19 scoped_refptr<DevToolsProtocolHandler> proto_handler =
20 new DevToolsProtocolHandler(port);
34 DevToolsProtocolHandler::DevToolsProtocolHandler(int port)
41 DevToolsProtocolHandler::~DevToolsProtocolHandler() {
47 void DevToolsProtocolHandler::Start() {
50 NewRunnableMethod(this, &DevToolsProtocolHandler::Init));
53 void DevToolsProtocolHandler::Init() {
58 void DevToolsProtocolHandler::Stop() {
61 NewRunnableMethod(this, &DevToolsProtocolHandler::Teardown));
66 void DevToolsProtocolHandler::Teardown() {
71 void DevToolsProtocolHandler::RegisterDestination(
78 void DevToolsProtocolHandler::UnregisterDestination(
86 void DevToolsProtocolHandler::HandleMessage(
102 void DevToolsProtocolHandler::Send(const DevToolsRemoteMessage& message) {
108 void DevToolsProtocolHandler::OnAcceptConnection(ListenSocket *connection) {
113 void DevToolsProtocolHandler::OnConnectionLost() {