Commit c8ce1331 authored by braveyao's avatar braveyao Committed by Commit Bot

desktopCapture: set audio_share checkbox as unchecked by default

This checkbox is set as checked by default at present. With some new
features, as getDisplayMedia and dynamic change capture source, it's
more reasonalbe to set it as unchecked by default. Also it will help
to count the requirement of audio capture during presenting.

Bug: 892201
Change-Id: I36c253bf1c862a31d99927be79c2072332cb1622
Reviewed-on: https://chromium-review.googlesource.com/c/1356713Reviewed-by: default avatarQiang Chen <qiangchen@chromium.org>
Commit-Queue: Weiyong Yao <braveyao@chromium.org>
Cr-Commit-Position: refs/heads/master@{#613266}
parent 81321bf5
qiangchen@chromium.org qiangchen@chromium.org
braveyao@chromium.org
...@@ -197,7 +197,7 @@ DesktopMediaPickerDialogView::DesktopMediaPickerDialogView( ...@@ -197,7 +197,7 @@ DesktopMediaPickerDialogView::DesktopMediaPickerDialogView(
if (params.request_audio) { if (params.request_audio) {
audio_share_checkbox_ = new views::Checkbox( audio_share_checkbox_ = new views::Checkbox(
l10n_util::GetStringUTF16(IDS_DESKTOP_MEDIA_PICKER_AUDIO_SHARE)); l10n_util::GetStringUTF16(IDS_DESKTOP_MEDIA_PICKER_AUDIO_SHARE));
audio_share_checkbox_->SetChecked(true); audio_share_checkbox_->SetChecked(false);
} }
// Focus on the first non-null media_list. // Focus on the first non-null media_list.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment