HomeSort by relevance Sort by last modified time
    Searched defs:DevToolsHttpProtocolHandler (Results 1 - 2 of 2) sorted by null

  /external/chromium/chrome/browser/debugger/
devtools_http_protocol_handler.h 23 class DevToolsHttpProtocolHandler
26 public base::RefCountedThreadSafe<DevToolsHttpProtocolHandler> {
39 static scoped_refptr<DevToolsHttpProtocolHandler> Start(
50 friend class base::RefCountedThreadSafe<DevToolsHttpProtocolHandler>;
52 DevToolsHttpProtocolHandler(const std::string& ip,
56 virtual ~DevToolsHttpProtocolHandler();
115 DISALLOW_COPY_AND_ASSIGN(DevToolsHttpProtocolHandler);
devtools_http_protocol_handler.cc 92 scoped_refptr<DevToolsHttpProtocolHandler> DevToolsHttpProtocolHandler::Start(
97 scoped_refptr<DevToolsHttpProtocolHandler> http_handler =
98 new DevToolsHttpProtocolHandler(ip, port, frontend_url, provider);
103 DevToolsHttpProtocolHandler::~DevToolsHttpProtocolHandler() {
108 void DevToolsHttpProtocolHandler::Start() {
111 NewRunnableMethod(this, &DevToolsHttpProtocolHandler::Init));
114 void DevToolsHttpProtocolHandler::Stop() {
117 NewRunnableMethod(this, &DevToolsHttpProtocolHandler::Teardown))
    [all...]

Completed in 43 milliseconds