Chromium Code Reviews| Index: remoting/base/constants.cc |
| diff --git a/remoting/base/constants.cc b/remoting/base/constants.cc |
| index c61ec01f9e141bda89c7c0430cce4a2dbb42bef1..da24fbdd0cb16db7a8ea675aff8c5936eaeb4929 100644 |
| --- a/remoting/base/constants.cc |
| +++ b/remoting/base/constants.cc |
| @@ -13,7 +13,15 @@ const char kControlChannelName[] = "control"; |
| const char kEventChannelName[] = "event"; |
| const char kVideoChannelName[] = "video"; |
| const char kVideoStatsChannelNamePrefix[] = "video_stats:"; |
| +const char kProcessStatsChannelName[] = "proc_stats"; |
| const char kMimeTypeTextUtf8[] = "text/plain; charset=UTF-8"; |
| +namespace extension_message { |
| + |
| +const char kSecurityKeyType[] = "gnubby-auth"; |
|
joedow
2017/05/26 16:14:10
nit, you could remove the namespace (like the chan
Sergey Ulanov
2017/05/26 19:27:29
+1
Hzj_jie
2017/05/26 20:42:16
Done.
|
| +const char kProcessStatsType[] = "process-stats"; |
| + |
| +} |
|
Sergey Ulanov
2017/05/26 19:27:30
// namespace extension_message
|
| + |
| } // namespace remoting |