Home
last modified time | relevance | path

Searched refs:DevToolsProtocolHandler (Results 1 – 10 of 10) sorted by relevance

/external/chromium/chrome/browser/debugger/
Ddevtools_protocol_handler.cc17 scoped_refptr<DevToolsProtocolHandler> DevToolsProtocolHandler::Start( in Start()
19 scoped_refptr<DevToolsProtocolHandler> proto_handler = in Start()
20 new DevToolsProtocolHandler(port); in Start()
34 DevToolsProtocolHandler::DevToolsProtocolHandler(int port) in DevToolsProtocolHandler() function in DevToolsProtocolHandler
41 DevToolsProtocolHandler::~DevToolsProtocolHandler() { in ~DevToolsProtocolHandler()
47 void DevToolsProtocolHandler::Start() { in Start()
50 NewRunnableMethod(this, &DevToolsProtocolHandler::Init)); in Start()
53 void DevToolsProtocolHandler::Init() { in Init()
58 void DevToolsProtocolHandler::Stop() { in Stop()
61 NewRunnableMethod(this, &DevToolsProtocolHandler::Teardown)); in Stop()
[all …]
Ddevtools_protocol_handler.h23 class DevToolsProtocolHandler
30 static scoped_refptr<DevToolsProtocolHandler> Start(int port);
62 explicit DevToolsProtocolHandler(int port);
63 virtual ~DevToolsProtocolHandler();
73 DISALLOW_COPY_AND_ASSIGN(DevToolsProtocolHandler);
Ddevtools_remote_service.h13 class DevToolsProtocolHandler; variable
27 explicit DevToolsRemoteService(DevToolsProtocolHandler* delegate);
43 DevToolsProtocolHandler* delegate_;
Dextension_ports_remote_service.h22 class DevToolsProtocolHandler; variable
38 explicit ExtensionPortsRemoteService(DevToolsProtocolHandler* delegate);
99 DevToolsProtocolHandler* delegate_;
Ddebugger_remote_service.h17 class DevToolsProtocolHandler; variable
43 explicit DebuggerRemoteService(DevToolsProtocolHandler* delegate);
120 DevToolsProtocolHandler* delegate_;
Ddevtools_remote_service.cc33 DevToolsRemoteService::DevToolsRemoteService(DevToolsProtocolHandler* delegate) in DevToolsRemoteService()
Ddebugger_remote_service.cc46 DebuggerRemoteService::DebuggerRemoteService(DevToolsProtocolHandler* delegate) in DebuggerRemoteService()
Dextension_ports_remote_service.cc113 DevToolsProtocolHandler* delegate) in ExtensionPortsRemoteService()
/external/chromium/chrome/browser/
Dbrowser_process_impl.h33 class DevToolsProtocolHandler; variable
201 scoped_refptr<DevToolsProtocolHandler> devtools_legacy_handler_;
Dbrowser_process_impl.cc540 devtools_legacy_handler_ = DevToolsProtocolHandler::Start(port); in InitDevToolsLegacyProtocolHandler()