// Copyright 2012 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef REMOTING_PROTOCOL_CONTENT_DESCRIPTION_H_ #define REMOTING_PROTOCOL_CONTENT_DESCRIPTION_H_ #include <memory> #include <string> #include "remoting/protocol/session_config.h" namespace jingle_xmpp { class XmlElement; } // namespace jingle_xmpp namespace remoting::protocol { // ContentDescription used for chromoting sessions. It contains the information // from the content description stanza in the session initialization handshake. // // This class also provides a type abstraction so that the Chromotocol Session // interface does not need to depend on libjingle. class ContentDescription { … }; } // namespace remoting::protocol #endif // REMOTING_PROTOCOL_CONTENT_DESCRIPTION_H_