aboutsummaryrefslogtreecommitdiff
path: root/cast/common/channel/virtual_connection.h
diff options
context:
space:
mode:
Diffstat (limited to 'cast/common/channel/virtual_connection.h')
-rw-r--r--cast/common/channel/virtual_connection.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/cast/common/channel/virtual_connection.h b/cast/common/channel/virtual_connection.h
index 69945708..a4045c92 100644
--- a/cast/common/channel/virtual_connection.h
+++ b/cast/common/channel/virtual_connection.h
@@ -9,8 +9,8 @@
#include <cstdint>
#include <string>
+namespace openscreen {
namespace cast {
-namespace channel {
// Transport system on top of CastSocket that allows routing messages over a
// single socket to different virtual endpoints (e.g. system messages vs.
@@ -111,7 +111,7 @@ inline bool operator!=(const VirtualConnection& a, const VirtualConnection& b) {
return !(a == b);
}
-} // namespace channel
} // namespace cast
+} // namespace openscreen
#endif // CAST_COMMON_CHANNEL_VIRTUAL_CONNECTION_H_