Skip to content

Commit

Permalink
rtc:: を webrtc:: に変える
Browse files Browse the repository at this point in the history
  • Loading branch information
voluntas committed Sep 16, 2024
1 parent f90abe8 commit b02fd1a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/fake_video_capturer.h
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,10 @@ struct FakeVideoCapturerConfig : sora::ScalableVideoTrackSourceConfig {
};

class FakeVideoCapturer : public sora::ScalableVideoTrackSource {
friend class rtc::RefCountedObject<FakeVideoCapturer>;
FakeVideoCapturer(FakeVideoCapturerConfig config);
friend class webrtc::RefCountedObject<FakeVideoCapturer>;

public:
FakeVideoCapturer(FakeVideoCapturerConfig config);
static rtc::scoped_refptr<FakeVideoCapturer> Create(
FakeVideoCapturerConfig config) {
return rtc::make_ref_counted<FakeVideoCapturer>(std::move(config));
Expand Down

0 comments on commit b02fd1a

Please sign in to comment.