| Index: talk/session/media/mediasession.h
|
| diff --git a/talk/session/media/mediasession.h b/talk/session/media/mediasession.h
|
| index d329dcdf27b72271ee16496b93104e65fa1ec51e..3825d37bea59577acb624d4298f381c9da428a10 100644
|
| --- a/talk/session/media/mediasession.h
|
| +++ b/talk/session/media/mediasession.h
|
| @@ -249,10 +249,10 @@ class MediaContentDescription : public ContentDescription {
|
| streams_.push_back(stream);
|
| }
|
| // Legacy streams have an ssrc, but nothing else.
|
| - void AddLegacyStream(uint32 ssrc) {
|
| + void AddLegacyStream(uint32_t ssrc) {
|
| streams_.push_back(StreamParams::CreateLegacy(ssrc));
|
| }
|
| - void AddLegacyStream(uint32 ssrc, uint32 fid_ssrc) {
|
| + void AddLegacyStream(uint32_t ssrc, uint32_t fid_ssrc) {
|
| StreamParams sp = StreamParams::CreateLegacy(ssrc);
|
| sp.AddFidSsrc(ssrc, fid_ssrc);
|
| streams_.push_back(sp);
|
| @@ -266,7 +266,7 @@ class MediaContentDescription : public ContentDescription {
|
| it->cname = cname;
|
| }
|
| }
|
| - uint32 first_ssrc() const {
|
| + uint32_t first_ssrc() const {
|
| if (streams_.empty()) {
|
| return 0;
|
| }
|
|
|