Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(262)

Unified Diff: remoting/base/constants.cc

Issue 2856243002: [Chromoting] Add ProcessStatsDispatcher to send process stats to the client
Patch Set: Change ProcessStatsDispatcher into ProcessStatsAgent and send the message through ClientStub Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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

Powered by Google App Engine
This is Rietveld 408576698