summaryrefslogtreecommitdiffstats
path: root/remoting/protocol/content_description.h
diff options
context:
space:
mode:
authorsergeyu@chromium.org <sergeyu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-08-19 23:31:43 +0000
committersergeyu@chromium.org <sergeyu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-08-19 23:31:43 +0000
commitda930e1b7adfb28f6895d95004c25984af627080 (patch)
tree5f0de3a58c50101498c70c99ec9622cf3ffab960 /remoting/protocol/content_description.h
parentdd5ad5f4fd6f7693d04f11331ad3c7d6a2a6c1b3 (diff)
downloadchromium_src-da930e1b7adfb28f6895d95004c25984af627080.zip
chromium_src-da930e1b7adfb28f6895d95004c25984af627080.tar.gz
chromium_src-da930e1b7adfb28f6895d95004c25984af627080.tar.bz2
Parsers and formatters for jingle messages.
BUG=51198 TEST=Unittests Review URL: http://codereview.chromium.org/7677042 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@97535 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'remoting/protocol/content_description.h')
-rw-r--r--remoting/protocol/content_description.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/remoting/protocol/content_description.h b/remoting/protocol/content_description.h
index b102480..5e4053f 100644
--- a/remoting/protocol/content_description.h
+++ b/remoting/protocol/content_description.h
@@ -26,6 +26,8 @@ namespace protocol {
// interface does not need to depend on libjingle.
class ContentDescription : public cricket::ContentDescription {
public:
+ static const char kChromotingContentName[];
+
ContentDescription(const CandidateSessionConfig* config,
const std::string& auth_token,
const std::string& certificate);
@@ -40,7 +42,7 @@ class ContentDescription : public cricket::ContentDescription {
buzz::XmlElement* ToXml() const;
- static cricket::ContentDescription* ParseXml(const buzz::XmlElement* element);
+ static ContentDescription* ParseXml(const buzz::XmlElement* element);
private:
scoped_ptr<const CandidateSessionConfig> candidate_config_;