Index: remoting/base/constants.h |
diff --git a/remoting/base/constants.h b/remoting/base/constants.h |
index c056e782a67363f8f49533c4c4f560514d4fb206..11b1789d0c765fb543a4c9842e19eaeed07814dd 100644 |
--- a/remoting/base/constants.h |
+++ b/remoting/base/constants.h |
@@ -16,12 +16,23 @@ extern const char kControlChannelName[]; |
extern const char kEventChannelName[]; |
extern const char kVideoChannelName[]; |
extern const char kVideoStatsChannelNamePrefix[]; |
+extern const char kProcessStatsChannelName[]; |
joedow
2017/05/26 16:14:10
I don't see this being used in the current iterati
Hzj_jie
2017/05/26 20:42:16
I forgot to remove it.
|
// MIME types for the clipboard. |
extern const char kMimeTypeTextUtf8[]; |
const int kDefaultDpi = 96; |
+namespace extension_message { |
+ |
+// Used as the type attribute of all Security Key protocol::ExtensionMessages. |
+extern const char kSecurityKeyType[]; |
joedow
2017/05/26 16:14:10
This is a nice addition, thanks!
Hzj_jie
2017/05/26 20:42:16
:)
|
+ |
+// Used as the type attribute of process stats protocol::ExtensionMessages. |
+extern const char kProcessStatsType[]; |
+ |
+} // namespace extension_message |
+ |
} // namespace remoting |
#endif // REMOTING_BASE_CONSTANTS_H_ |