blob: f13b5913efc99b6386bf7d7f437648d9dd73ad83 [file] [log] [blame]
// Copyright 2017 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chromecast/browser/cast_web_view_default.h"
#include <utility>
#include "base/logging.h"
#include "base/threading/thread_task_runner_handle.h"
#include "chromecast/base/cast_features.h"
#include "chromecast/base/chromecast_switches.h"
#include "chromecast/base/metrics/cast_metrics_helper.h"
#include "chromecast/browser/cast_browser_process.h"
#include "chromecast/browser/cast_web_contents_manager.h"
#include "chromecast/chromecast_buildflags.h"
#include "content/public/browser/media_capture_devices.h"
#include "content/public/browser/media_session.h"
#include "content/public/browser/navigation_handle.h"
#include "content/public/browser/render_frame_host.h"
#include "content/public/browser/render_view_host.h"
#include "content/public/browser/render_widget_host.h"
#include "content/public/browser/render_widget_host_view.h"
#include "ipc/ipc_message.h"
#include "net/base/net_errors.h"
#include "ui/display/display.h"
#include "ui/display/screen.h"
#include "url/gurl.h"
#if defined(USE_AURA)
#include "ui/aura/window.h"
#endif
namespace chromecast {
namespace {
std::unique_ptr<content::WebContents> CreateWebContents(
content::BrowserContext* browser_context,
scoped_refptr<content::SiteInstance> site_instance) {
CHECK(display::Screen::GetScreen());
gfx::Size display_size =
display::Screen::GetScreen()->GetPrimaryDisplay().size();
content::WebContents::CreateParams create_params(browser_context, NULL);
create_params.routing_id = MSG_ROUTING_NONE;
create_params.initial_size = display_size;
create_params.site_instance = site_instance;
return content::WebContents::Create(create_params);
}
} // namespace
CastWebViewDefault::CastWebViewDefault(
const CreateParams& params,
CastWebContentsManager* web_contents_manager,
content::BrowserContext* browser_context,
scoped_refptr<content::SiteInstance> site_instance)
: web_contents_manager_(web_contents_manager),
browser_context_(browser_context),
site_instance_(std::move(site_instance)),
delegate_(params.delegate),
transparent_(params.transparent),
allow_media_access_(params.allow_media_access),
web_contents_(CreateWebContents(browser_context_, site_instance_)),
cast_web_contents_(
web_contents_.get(),
{delegate_, params.enabled_for_dev, params.use_cma_renderer}),
window_(shell::CastContentWindow::Create(params.window_params)),
resize_window_when_navigation_starts_(true) {
DCHECK(delegate_);
DCHECK(web_contents_manager_);
DCHECK(browser_context_);
DCHECK(window_);
content::WebContentsObserver::Observe(web_contents_.get());
web_contents_->SetDelegate(this);
#if defined(USE_AURA)
web_contents_->GetNativeView()->SetName(params.activity_id);
#endif
#if BUILDFLAG(IS_ANDROID_THINGS)
// Configure the ducking multiplier for AThings speakers. When CMA backend is
// used we don't want the Chromium MediaSession to duck since we are doing
// our own ducking. When no CMA backend is used we rely on the MediaSession
// for ducking. In that case set it to a proper value to match the ducking
// done in CMA backend.
#if BUILDFLAG(IS_CAST_USING_CMA_BACKEND)
// passthrough, i.e., disable ducking
constexpr double kDuckingMultiplier = 1.0;
#else
// duck by -30dB
constexpr double kDuckingMultiplier = 0.03;
#endif
content::MediaSession::Get(web_contents_.get())
->SetDuckingVolumeMultiplier(kDuckingMultiplier);
#endif
}
CastWebViewDefault::~CastWebViewDefault() {}
shell::CastContentWindow* CastWebViewDefault::window() const {
return window_.get();
}
content::WebContents* CastWebViewDefault::web_contents() const {
return web_contents_.get();
}
CastWebContents* CastWebViewDefault::cast_web_contents() {
return &cast_web_contents_;
}
void CastWebViewDefault::LoadUrl(GURL url) {
cast_web_contents_.LoadUrl(url);
}
void CastWebViewDefault::ClosePage(const base::TimeDelta& shutdown_delay) {
shutdown_delay_ = shutdown_delay;
content::WebContentsObserver::Observe(nullptr);
cast_web_contents_.ClosePage();
}
void CastWebViewDefault::CloseContents(content::WebContents* source) {
DCHECK_EQ(source, web_contents_.get());
window_.reset(); // Window destructor requires live web_contents on Android.
if (!shutdown_delay_.is_zero()) {
// We need to delay the deletion of web_contents_ to give (and guarantee)
// the renderer enough time to finish 'onunload' handler (but we don't want
// to wait any longer than that to delay the starting of next app).
web_contents_manager_->DelayWebContentsDeletion(std::move(web_contents_),
shutdown_delay_);
}
// This will signal to the owner that |web_contents_| is no longer in use,
// permitting the owner to tear down.
cast_web_contents_.Stop(net::OK);
}
void CastWebViewDefault::InitializeWindow(CastWindowManager* window_manager,
CastWindowManager::WindowId z_order,
VisibilityPriority initial_priority) {
DCHECK(window_manager);
window_->CreateWindowForWebContents(web_contents_.get(), window_manager,
z_order, initial_priority);
web_contents_->Focus();
}
void CastWebViewDefault::GrantScreenAccess() {
window_->GrantScreenAccess();
}
void CastWebViewDefault::RevokeScreenAccess() {
resize_window_when_navigation_starts_ = false;
window_->RevokeScreenAccess();
}
content::WebContents* CastWebViewDefault::OpenURLFromTab(
content::WebContents* source,
const content::OpenURLParams& params) {
LOG(INFO) << "Change url: " << params.url;
// If source is NULL which means current tab, use web_contents_ of this class.
if (!source)
source = web_contents_.get();
DCHECK_EQ(source, web_contents_.get());
// We don't want to create another web_contents. Load url only when source is
// specified.
source->GetController().LoadURL(params.url, params.referrer,
params.transition, params.extra_headers);
return source;
}
void CastWebViewDefault::ActivateContents(content::WebContents* contents) {
DCHECK_EQ(contents, web_contents_.get());
contents->GetRenderViewHost()->GetWidget()->Focus();
}
bool CastWebViewDefault::CheckMediaAccessPermission(
content::RenderFrameHost* render_frame_host,
const GURL& security_origin,
blink::MediaStreamType type) {
if (!chromecast::IsFeatureEnabled(kAllowUserMediaAccess) &&
!allow_media_access_) {
LOG(WARNING) << __func__ << ": media access is disabled.";
return false;
}
return true;
}
bool CastWebViewDefault::DidAddMessageToConsole(
content::WebContents* source,
int32_t level,
const base::string16& message,
int32_t line_no,
const base::string16& source_id) {
return delegate_->OnAddMessageToConsoleReceived(level, message, line_no,
source_id);
}
const blink::MediaStreamDevice* GetRequestedDeviceOrDefault(
const blink::MediaStreamDevices& devices,
const std::string& requested_device_id) {
if (!requested_device_id.empty()) {
auto it = std::find_if(
devices.begin(), devices.end(),
[requested_device_id](const blink::MediaStreamDevice& device) {
return device.id == requested_device_id;
});
return it != devices.end() ? &(*it) : nullptr;
}
if (!devices.empty())
return &devices[0];
return nullptr;
}
void CastWebViewDefault::RequestMediaAccessPermission(
content::WebContents* web_contents,
const content::MediaStreamRequest& request,
content::MediaResponseCallback callback) {
if (!chromecast::IsFeatureEnabled(kAllowUserMediaAccess) &&
!allow_media_access_) {
LOG(WARNING) << __func__ << ": media access is disabled.";
std::move(callback).Run(blink::MediaStreamDevices(),
blink::MEDIA_DEVICE_NOT_SUPPORTED,
std::unique_ptr<content::MediaStreamUI>());
return;
}
auto audio_devices =
content::MediaCaptureDevices::GetInstance()->GetAudioCaptureDevices();
auto video_devices =
content::MediaCaptureDevices::GetInstance()->GetVideoCaptureDevices();
VLOG(2) << __func__ << " audio_devices=" << audio_devices.size()
<< " video_devices=" << video_devices.size();
blink::MediaStreamDevices devices;
if (request.audio_type == blink::MEDIA_DEVICE_AUDIO_CAPTURE) {
const blink::MediaStreamDevice* device = GetRequestedDeviceOrDefault(
audio_devices, request.requested_audio_device_id);
if (device) {
VLOG(1) << __func__ << "Using audio device: id=" << device->id
<< " name=" << device->name;
devices.push_back(*device);
}
}
if (request.video_type == blink::MEDIA_DEVICE_VIDEO_CAPTURE) {
const blink::MediaStreamDevice* device = GetRequestedDeviceOrDefault(
video_devices, request.requested_video_device_id);
if (device) {
VLOG(1) << __func__ << "Using video device: id=" << device->id
<< " name=" << device->name;
devices.push_back(*device);
}
}
std::move(callback).Run(devices, blink::MEDIA_DEVICE_OK,
std::unique_ptr<content::MediaStreamUI>());
}
std::unique_ptr<content::BluetoothChooser>
CastWebViewDefault::RunBluetoothChooser(
content::RenderFrameHost* frame,
const content::BluetoothChooser::EventHandler& event_handler) {
auto chooser = delegate_->RunBluetoothChooser(frame, event_handler);
return chooser
? std::move(chooser)
: WebContentsDelegate::RunBluetoothChooser(frame, event_handler);
}
void CastWebViewDefault::RenderViewCreated(
content::RenderViewHost* render_view_host) {
content::RenderWidgetHostView* view =
render_view_host->GetWidget()->GetView();
if (view) {
view->SetBackgroundColor(
transparent_ ? SK_ColorTRANSPARENT
: chromecast::GetSwitchValueColor(
switches::kCastAppBackgroundColor, SK_ColorBLACK));
}
}
void CastWebViewDefault::DidFirstVisuallyNonEmptyPaint() {
metrics::CastMetricsHelper::GetInstance()->LogTimeToFirstPaint();
}
void CastWebViewDefault::DidStartNavigation(
content::NavigationHandle* navigation_handle) {
if (!resize_window_when_navigation_starts_) {
return;
}
resize_window_when_navigation_starts_ = false;
#if defined(USE_AURA)
// Resize window
gfx::Size display_size =
display::Screen::GetScreen()->GetPrimaryDisplay().size();
aura::Window* content_window = web_contents()->GetNativeView();
content_window->SetBounds(
gfx::Rect(display_size.width(), display_size.height()));
#endif
}
void CastWebViewDefault::MediaStartedPlaying(const MediaPlayerInfo& media_info,
const MediaPlayerId& id) {
metrics::CastMetricsHelper::GetInstance()->LogMediaPlay();
}
void CastWebViewDefault::MediaStoppedPlaying(
const MediaPlayerInfo& media_info,
const MediaPlayerId& id,
WebContentsObserver::MediaStoppedReason reason) {
metrics::CastMetricsHelper::GetInstance()->LogMediaPause();
}
} // namespace chromecast