| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "remoting/base/constants.h" | 5 #include "remoting/base/constants.h" |
| 6 | 6 |
| 7 namespace remoting { | 7 namespace remoting { |
| 8 | 8 |
| 9 const char kChromotingBotJid[] = "remoting@bot.talk.google.com"; | 9 const char kChromotingBotJid[] = "remoting@bot.talk.google.com"; |
| 10 | 10 |
| 11 const char kChromotingTokenDefaultServiceName[] = "chromiumsync"; | 11 const char kChromotingTokenDefaultServiceName[] = "chromiumsync"; |
| 12 | 12 |
| 13 const char kChromotingXmlNamespace[] = "google:remoting"; | 13 const char kChromotingXmlNamespace[] = "google:remoting"; |
| 14 | 14 |
| 15 const char kControlChannelName[] = "control"; | 15 const char kControlChannelName[] = "control"; |
| 16 const char kEventChannelName[] = "event"; | 16 const char kEventChannelName[] = "event"; |
| 17 const char kVideoChannelName[] = "video"; | 17 const char kVideoChannelName[] = "video"; |
| 18 const char kVideoRtpChannelName[] = "videortp"; | 18 const char kVideoRtpChannelName[] = "videortp"; |
| 19 const char kVideoRtcpChannelName[] = "videortpc"; | 19 const char kVideoRtcpChannelName[] = "videortpc"; |
| 20 | 20 |
| 21 const char kMimeTypeText[] = "text/plain; charset=UTF-8"; |
| 22 |
| 21 } // namespace remoting | 23 } // namespace remoting |
| OLD | NEW |