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

  /external/chromium_org/remoting/protocol/
channel_multiplexer.h 41 // Callback for |base_channel_| creation.
64 // Factory used to create |base_channel_|. Set to NULL once creation is
72 scoped_ptr<net::StreamSocket> base_channel_; member in class:remoting::protocol::ChannelMultiplexer
74 // List of requested channels while we are waiting for |base_channel_|.
channel_multiplexer.cc 376 if (base_channel_.get()) {
377 // Already have |base_channel_|. Create new multiplexed channel
380 } else if (!base_channel_.get() && !base_channel_factory_) {
381 // Fail synchronously if we failed to create |base_channel_|.
384 // Still waiting for the |base_channel_|.
417 base_channel_ = socket.Pass();
419 if (base_channel_.get()) {
421 reader_.Init(base_channel_.get(),
424 writer_.Init(base_channel_.get(),
447 if (base_channel_.get()
    [all...]

Completed in 1310 milliseconds