# File lib/selenium/webdriver/chrome/command_executor.rb, line 10
        def initialize
          @server       = TCPServer.new(localhost, 0)
          @queue        = Queue.new

          @accepted_any = false
          @next_socket  = nil
          @listening    = true

          Thread.new { start_run_loop }
        end