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 3 // found in the LICENSE file. 4 5 #include "remoting/base/constants.h" 6 7 namespace remoting { 8 9 const char kChromotingTokenDefaultServiceName[] = "chromiumsync"; 10 11 const char kChromotingXmlNamespace[] = "google:remoting"; 12 13 const char kAudioChannelName[] = "audio"; 14 const char kControlChannelName[] = "control"; 15 const char kEventChannelName[] = "event"; 16 const char kVideoChannelName[] = "video"; 17 const char kVideoRtpChannelName[] = "videortp"; 18 const char kVideoRtcpChannelName[] = "videortpc"; 19 20 const char kMimeTypeTextUtf8[] = "text/plain; charset=UTF-8"; 21 22 } // namespace remoting 23