aboutsummaryrefslogtreecommitdiff
path: root/cast/streaming/rtp_time.h
diff options
context:
space:
mode:
authormark a. foltz <mfoltz@chromium.org>2019-12-23 14:14:54 -0800
committerCommit Bot <commit-bot@chromium.org>2019-12-23 22:34:55 +0000
commita39033cfe8d7f5c67ae1fd8344efd5ccc666a910 (patch)
tree496286894a6f67c98b6e3ecd2c4ca98cbe8784a8 /cast/streaming/rtp_time.h
parentf6c90903dd65e65e997b1fa39638ff8bb72af15a (diff)
downloadopenscreen-a39033cfe8d7f5c67ae1fd8344efd5ccc666a910.tar.gz
Reland "Replace namespace cast::something with openscreen::cast."
This is a reland of 80ed3d779e3e38de94656bf59ff4b62534c797fe Original change's description: > Replace namespace cast::something with openscreen::cast. > > ...and fixed a few C++ style issues around use of rvals in files > touched. > > Bug: openscreen:90 > Change-Id: Ib14fb1c47dfafec1fefe0cad31bce764aae0272e > Reviewed-on: https://chromium-review.googlesource.com/c/openscreen/+/1959204 > Commit-Queue: Yuri Wiitala <miu@chromium.org> > Reviewed-by: Jordan Bayles <jophba@chromium.org> TBR=miu@chromium.org,jopbha@chromium.org Bug: openscreen:90 Change-Id: Ifa9afb75c4bb8ae939935cf97ea408f658f159bc Reviewed-on: https://chromium-review.googlesource.com/c/openscreen/+/1980853 Reviewed-by: mark a. foltz <mfoltz@chromium.org> Commit-Queue: mark a. foltz <mfoltz@chromium.org>
Diffstat (limited to 'cast/streaming/rtp_time.h')
-rw-r--r--cast/streaming/rtp_time.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/cast/streaming/rtp_time.h b/cast/streaming/rtp_time.h
index 0a7f5d86..0e710f50 100644
--- a/cast/streaming/rtp_time.h
+++ b/cast/streaming/rtp_time.h
@@ -15,8 +15,8 @@
#include "cast/streaming/expanded_value_base.h"
#include "platform/api/time.h"
+namespace openscreen {
namespace cast {
-namespace streaming {
// Forward declarations (see below).
class RtpTimeDelta;
@@ -262,7 +262,7 @@ class RtpTimeTicks : public ExpandedValueBase<int64_t, RtpTimeTicks> {
constexpr int64_t value() const { return value_; }
};
-} // namespace streaming
} // namespace cast
+} // namespace openscreen
#endif // CAST_STREAMING_RTP_TIME_H_