Lines Matching full:capabilities
10 #include "remoting/base/capabilities.h"
176 const protocol::Capabilities& capabilities) {
181 LOG(WARNING) << "protocol::Capabilities has been received already.";
185 // Compute the set of capabilities supported by both client and host.
187 if (capabilities.has_capabilities())
188 *client_capabilities_ = capabilities.capabilities();
194 VLOG(1) << "Client capabilities: " << *client_capabilities_;
196 // Calculate the set of capabilities enabled by both client and host and
283 // Collate the set of capabilities to offer the client, if it supports them.
321 // Negotiate capabilities with the client.
322 VLOG(1) << "Host capabilities: " << host_capabilities_;
324 protocol::Capabilities capabilities;
325 capabilities.set_capabilities(host_capabilities_);
326 connection_->client_stub()->SetCapabilities(capabilities);