| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 kAudioChannelName[] = "audio"; | 15 const char kAudioChannelName[] = "audio"; |
| 16 const char kControlChannelName[] = "control"; | 16 const char kControlChannelName[] = "control"; |
| 17 const char kEventChannelName[] = "event"; | 17 const char kEventChannelName[] = "event"; |
| 18 const char kVideoChannelName[] = "video"; | 18 const char kVideoChannelName[] = "video"; |
| 19 const char kVideoRtpChannelName[] = "videortp"; | 19 const char kVideoRtpChannelName[] = "videortp"; |
| 20 const char kVideoRtcpChannelName[] = "videortpc"; | 20 const char kVideoRtcpChannelName[] = "videortpc"; |
| 21 | 21 |
| 22 const char kMimeTypeTextUtf8[] = "text/plain; charset=UTF-8"; | 22 const char kMimeTypeTextUtf8[] = "text/plain; charset=UTF-8"; |
| 23 | 23 |
| 24 #if defined(OS_WIN) |
| 25 // The Omaha Appid of the host. It should be kept in sync with $(var.OmahaAppid) |
| 26 // defined in remoting/host/installer/chromoting.wxs and the Omaha server |
| 27 // configuration. |
| 28 const wchar_t kHostOmahaAppid[] = L"{b210701e-ffc4-49e3-932b-370728c72662}"; |
| 29 #endif // defined(OS_WIN) |
| 30 |
| 24 } // namespace remoting | 31 } // namespace remoting |
| OLD | NEW |