| Index: content/renderer/media/rtc_data_channel_handler.h
|
| diff --git a/content/renderer/media/rtc_data_channel_handler.h b/content/renderer/media/rtc_data_channel_handler.h
|
| index f93eeca56aa1b6ded5e99e0184f860293c6e3800..1206d75fc1e2093847f8e7f14da8b347cac2483d 100644
|
| --- a/content/renderer/media/rtc_data_channel_handler.h
|
| +++ b/content/renderer/media/rtc_data_channel_handler.h
|
| @@ -5,14 +5,17 @@
|
| #ifndef CONTENT_RENDERER_MEDIA_RTC_DATA_CHANNEL_HANDLER_H_
|
| #define CONTENT_RENDERER_MEDIA_RTC_DATA_CHANNEL_HANDLER_H_
|
|
|
| +#include <stddef.h>
|
| +#include <stdint.h>
|
| +
|
| #include "base/memory/ref_counted.h"
|
| #include "base/memory/scoped_ptr.h"
|
| #include "base/single_thread_task_runner.h"
|
| #include "base/threading/thread_checker.h"
|
| #include "content/common/content_export.h"
|
| -#include "third_party/libjingle/source/talk/app/webrtc/peerconnectioninterface.h"
|
| #include "third_party/WebKit/public/platform/WebRTCDataChannelHandler.h"
|
| #include "third_party/WebKit/public/platform/WebRTCDataChannelHandlerClient.h"
|
| +#include "third_party/libjingle/source/talk/app/webrtc/peerconnectioninterface.h"
|
|
|
| namespace content {
|
|
|
| @@ -87,7 +90,7 @@ class CONTENT_EXPORT RtcDataChannelHandler
|
|
|
| // webrtc::DataChannelObserver implementation.
|
| void OnStateChange() override;
|
| - void OnBufferedAmountChange(uint64 previous_amount) override;
|
| + void OnBufferedAmountChange(uint64_t previous_amount) override;
|
| void OnMessage(const webrtc::DataBuffer& buffer) override;
|
|
|
| void OnStateChangeImpl(webrtc::DataChannelInterface::DataState state);
|
|
|