Home | History | Annotate | Download | only in capture

Lines Matching refs:Impl

23 class WebContentsAudioInputStream::Impl
24 : public base::RefCountedThreadSafe<WebContentsAudioInputStream::Impl>,
28 Impl(int render_process_id, int render_view_id,
53 friend class base::RefCountedThreadSafe<WebContentsAudioInputStream::Impl>;
62 virtual ~Impl();
104 DISALLOW_COPY_AND_ASSIGN(Impl);
107 WebContentsAudioInputStream::Impl::Impl(
121 // WAIS::Impl can be constructed on any thread, but will DCHECK that all
126 WebContentsAudioInputStream::Impl::~Impl() {
130 bool WebContentsAudioInputStream::Impl::Open() {
142 base::Bind(&Impl::OnTargetChanged, this));
147 void WebContentsAudioInputStream::Impl::Start(AudioInputCallback* callback) {
167 void WebContentsAudioInputStream::Impl::Stop() {
182 void WebContentsAudioInputStream::Impl::Close() {
197 bool WebContentsAudioInputStream::Impl::IsTargetLost() const {
203 void WebContentsAudioInputStream::Impl::ReportError() {
211 void WebContentsAudioInputStream::Impl::StartMirroring() {
223 void WebContentsAudioInputStream::Impl::StopMirroring() {
235 media::AudioOutputStream* WebContentsAudioInputStream::Impl::AddInput(
243 base::Bind(&Impl::ReleaseInput, this));
246 void WebContentsAudioInputStream::Impl::ReleaseInput(
251 void WebContentsAudioInputStream::Impl::OnTargetChanged(int render_process_id,
307 : impl_(new Impl(render_process_id, render_view_id,