summaryrefslogtreecommitdiffstats
path: root/third_party/libwebrtc/api/set_local_description_observer_interface.h
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/libwebrtc/api/set_local_description_observer_interface.h')
-rw-r--r--third_party/libwebrtc/api/set_local_description_observer_interface.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/third_party/libwebrtc/api/set_local_description_observer_interface.h b/third_party/libwebrtc/api/set_local_description_observer_interface.h
index 8e7b6258d3..40f85b944e 100644
--- a/third_party/libwebrtc/api/set_local_description_observer_interface.h
+++ b/third_party/libwebrtc/api/set_local_description_observer_interface.h
@@ -11,15 +11,15 @@
#ifndef API_SET_LOCAL_DESCRIPTION_OBSERVER_INTERFACE_H_
#define API_SET_LOCAL_DESCRIPTION_OBSERVER_INTERFACE_H_
+#include "api/ref_count.h"
#include "api/rtc_error.h"
-#include "rtc_base/ref_count.h"
namespace webrtc {
// OnSetLocalDescriptionComplete() invokes as soon as
// PeerConnectionInterface::SetLocalDescription() operation completes, allowing
// the observer to examine the effects of the operation without delay.
-class SetLocalDescriptionObserverInterface : public rtc::RefCountInterface {
+class SetLocalDescriptionObserverInterface : public webrtc::RefCountInterface {
public:
// On success, `error.ok()` is true.
virtual void OnSetLocalDescriptionComplete(RTCError error) = 0;