mirror of
https://github.com/mollyim/webrtc.git
synced 2025-05-12 13:20:44 +01:00

instead of rtc::RefCountInterface Bug: webrtc:15622 Change-Id: I085660a097a019c7aa58a7e3f0aceeedd9fcc8c0 Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/325460 Commit-Queue: Harald Alvestrand <hta@webrtc.org> Reviewed-by: Tomas Gunnarsson <tommi@webrtc.org> Reviewed-by: Mirko Bonadei <mbonadei@webrtc.org> Cr-Commit-Position: refs/heads/main@{#41050}
30 lines
1.1 KiB
C++
30 lines
1.1 KiB
C++
/*
|
|
* Copyright 2020 The WebRTC project authors. All Rights Reserved.
|
|
*
|
|
* Use of this source code is governed by a BSD-style license
|
|
* that can be found in the LICENSE file in the root of the source
|
|
* tree. An additional intellectual property rights grant can be found
|
|
* in the file PATENTS. All contributing project authors may
|
|
* be found in the AUTHORS file in the root of the source tree.
|
|
*/
|
|
|
|
#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"
|
|
|
|
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 webrtc::RefCountInterface {
|
|
public:
|
|
// On success, `error.ok()` is true.
|
|
virtual void OnSetLocalDescriptionComplete(RTCError error) = 0;
|
|
};
|
|
|
|
} // namespace webrtc
|
|
|
|
#endif // API_SET_LOCAL_DESCRIPTION_OBSERVER_INTERFACE_H_
|