1
    2
    3
    4
    5
    6
    7
    8
    9
   10
   11
   12
   13
   14
   15
   16
   17
   18
   19
   20
   21
   22
   23
   24
   25
   26
   27
   28
   29
   30
   31
   32
   33
   34
   35
   36
   37

content / browser / media / media_stream_web_contents_observer.cc [blame]

// Copyright 2021 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "content/browser/media/media_stream_web_contents_observer.h"

#include <string>

#include "content/public/browser/browser_thread.h"

namespace content {

MediaStreamWebContentsObserver::MediaStreamWebContentsObserver(
    WebContents* web_contents,
    base::RepeatingClosure focus_callback)
    : WebContentsObserver(web_contents) {
  DCHECK_CURRENTLY_ON(BrowserThread::UI);

  on_focus_callback_ = std::move(focus_callback);
}

MediaStreamWebContentsObserver::~MediaStreamWebContentsObserver() {
  DCHECK_CURRENTLY_ON(BrowserThread::UI);

  on_focus_callback_.Reset();
  Observe(nullptr);
}

void MediaStreamWebContentsObserver::OnWebContentsFocused(
    RenderWidgetHost* render_widget_host) {
  DCHECK_CURRENTLY_ON(BrowserThread::UI);

  if (on_focus_callback_)
    on_focus_callback_.Run();
}

}  // namespace content