Home
last modified time | relevance | path

Searched refs:FinalRefCountedObject (Results 1 – 6 of 6) sorted by relevance

/external/webrtc/rtc_base/
Dref_counted_object.h61 class FinalRefCountedObject final : public T {
67 explicit FinalRefCountedObject(T&& other) : T(std::move(other)) {} in FinalRefCountedObject() function
68 FinalRefCountedObject(const FinalRefCountedObject&) = delete;
69 FinalRefCountedObject& operator=(const FinalRefCountedObject&) = delete;
82 ~FinalRefCountedObject() = default;
Dref_counted_object_unittest.cc115 TEST(FinalRefCountedObject, CanWrapIntoScopedRefptr) { in TEST() argument
116 using WrappedTyped = FinalRefCountedObject<A>; in TEST()
130 TEST(FinalRefCountedObject, CanCreateFromMovedType) { in TEST() argument
171 scoped_refptr<FinalRefCountedObject<Foo>> p2 = p; in TEST()
Dcopy_on_write_buffer.h279 using RefCountedBuffer = FinalRefCountedObject<Buffer>;
/external/webrtc/api/
Dmake_ref_counted.h112 scoped_refptr<FinalRefCountedObject<T>> make_ref_counted(Args&&... args) { in make_ref_counted()
113 return scoped_refptr<FinalRefCountedObject<T>>( in make_ref_counted()
114 new FinalRefCountedObject<T>(std::forward<Args>(args)...)); in make_ref_counted()
/external/webrtc/modules/desktop_capture/
Dshared_desktop_frame.h56 typedef rtc::FinalRefCountedObject<std::unique_ptr<DesktopFrame>> Core;
/external/webrtc/test/scenario/
Dvideo_frame_matcher.h55 using DecodedFrame = rtc::FinalRefCountedObject<DecodedFrameBase>;