Home
last modified time | relevance | path

Searched refs:window_capturer_ (Results 1 – 4 of 4) sorted by relevance

/external/chromium_org/third_party/libjingle/source/talk/media/base/
Dfakescreencapturerfactory.h41 : window_capturer_(NULL), in FakeScreenCapturerFactory()
45 if (window_capturer_ != NULL) { in Create()
48 window_capturer_ = new cricket::FakeVideoCapturer; in Create()
49 window_capturer_->SignalDestroyed.connect( in Create()
52 window_capturer_->SignalStateChange.connect( in Create()
55 return window_capturer_; in Create()
58 cricket::FakeVideoCapturer* window_capturer() { return window_capturer_; } in window_capturer()
64 if (capturer == window_capturer_) { in OnWindowCapturerDestroyed()
65 window_capturer_ = NULL; in OnWindowCapturerDestroyed()
72 cricket::FakeVideoCapturer* window_capturer_; variable
/external/chromium_org/chrome/browser/media/
Dnative_desktop_media_list_unittest.cc151 : window_capturer_(NULL), in DesktopMediaListTest()
157 window_capturer_ = new FakeWindowCapturer(); in CreateWithDefaultCapturers()
160 scoped_ptr<webrtc::WindowCapturer>(window_capturer_))); in CreateWithDefaultCapturers()
175 window_capturer_->SetWindowList(list); in AddWindowsAndVerify()
210 FakeWindowCapturer* window_capturer_; member in __anon3edeff7e0111::DesktopMediaListTest
239 window_capturer_ = new FakeWindowCapturer(); in TEST_F()
242 scoped_ptr<webrtc::WindowCapturer>(window_capturer_))); in TEST_F()
277 window_capturer_->SetWindowList(list); in TEST_F()
294 window_capturer_->SetWindowList(list); in TEST_F()
311 window_capturer_->SetWindowList(list); in TEST_F()
[all …]
Dnative_desktop_media_list.cc106 scoped_ptr<webrtc::WindowCapturer> window_capturer_; member in NativeDesktopMediaList::Worker
121 window_capturer_(window_capturer.Pass()) { in Worker()
124 if (window_capturer_) in Worker()
125 window_capturer_->Start(this); in Worker()
155 if (window_capturer_) { in Refresh()
157 if (window_capturer_->GetWindowList(&windows)) { in Refresh()
188 if (!window_capturer_->SelectWindow(source.id.id)) in Refresh()
190 window_capturer_->Capture(webrtc::DesktopRegion()); in Refresh()
238 window_capturer_(window_capturer.Pass()), in NativeDesktopMediaList()
270 DCHECK(screen_capturer_ || window_capturer_); in StartUpdating()
[all …]
Dnative_desktop_media_list.h71 scoped_ptr<webrtc::WindowCapturer> window_capturer_; variable