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 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150
|
// Copyright (c) 2012 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 "chrome/browser/media/media_stream_infobar_delegate.h"
#include "base/logging.h"
#include "base/metrics/histogram.h"
#include "base/strings/utf_string_conversions.h"
#include "chrome/browser/infobars/infobar_service.h"
#include "chrome/common/url_constants.h"
#include "chrome/grit/generated_resources.h"
#include "components/google/core/browser/google_util.h"
#include "components/infobars/core/infobar.h"
#include "content/public/browser/web_contents.h"
#include "grit/components_strings.h"
#include "grit/theme_resources.h"
#include "ui/base/l10n/l10n_util.h"
#include "url/gurl.h"
namespace {
enum DevicePermissionActions {
kAllowHttps = 0,
kAllowHttp,
kDeny,
kCancel,
kPermissionActionsMax // Must always be last!
};
} // namespace
MediaStreamInfoBarDelegate::~MediaStreamInfoBarDelegate() {
}
// static
bool MediaStreamInfoBarDelegate::Create(
content::WebContents* web_contents,
const content::MediaStreamRequest& request,
const content::MediaResponseCallback& callback) {
scoped_ptr<MediaStreamDevicesController> controller(
new MediaStreamDevicesController(web_contents, request, callback));
if (controller->DismissInfoBarAndTakeActionOnSettings())
return false;
InfoBarService* infobar_service =
InfoBarService::FromWebContents(web_contents);
if (!infobar_service) {
// Deny the request if there is no place to show the infobar, e.g. when
// the request comes from a background extension page.
controller->Deny(false, content::MEDIA_DEVICE_INVALID_STATE);
return false;
}
scoped_ptr<infobars::InfoBar> infobar(
infobar_service->CreateConfirmInfoBar(scoped_ptr<ConfirmInfoBarDelegate>(
new MediaStreamInfoBarDelegate(controller.Pass()))));
for (size_t i = 0; i < infobar_service->infobar_count(); ++i) {
infobars::InfoBar* old_infobar = infobar_service->infobar_at(i);
if (old_infobar->delegate()->AsMediaStreamInfoBarDelegate()) {
infobar_service->ReplaceInfoBar(old_infobar, infobar.Pass());
return true;
}
}
infobar_service->AddInfoBar(infobar.Pass());
return true;
}
MediaStreamInfoBarDelegate::MediaStreamInfoBarDelegate(
scoped_ptr<MediaStreamDevicesController> controller)
: ConfirmInfoBarDelegate(),
controller_(controller.Pass()) {
DCHECK(controller_.get());
DCHECK(controller_->HasAudio() || controller_->HasVideo());
}
void MediaStreamInfoBarDelegate::InfoBarDismissed() {
// Deny the request if the infobar was closed with the 'x' button, since
// we don't want WebRTC to be waiting for an answer that will never come.
UMA_HISTOGRAM_ENUMERATION("Media.DevicePermissionActions",
kCancel, kPermissionActionsMax);
controller_->Deny(false, content::MEDIA_DEVICE_PERMISSION_DISMISSED);
}
int MediaStreamInfoBarDelegate::GetIconID() const {
return controller_->HasVideo() ?
IDR_INFOBAR_MEDIA_STREAM_CAMERA : IDR_INFOBAR_MEDIA_STREAM_MIC;
}
infobars::InfoBarDelegate::Type MediaStreamInfoBarDelegate::GetInfoBarType()
const {
return PAGE_ACTION_TYPE;
}
MediaStreamInfoBarDelegate*
MediaStreamInfoBarDelegate::AsMediaStreamInfoBarDelegate() {
return this;
}
base::string16 MediaStreamInfoBarDelegate::GetMessageText() const {
int message_id = IDS_MEDIA_CAPTURE_AUDIO_AND_VIDEO;
if (!controller_->HasAudio())
message_id = IDS_MEDIA_CAPTURE_VIDEO_ONLY;
else if (!controller_->HasVideo())
message_id = IDS_MEDIA_CAPTURE_AUDIO_ONLY;
return l10n_util::GetStringFUTF16(
message_id, base::UTF8ToUTF16(controller_->GetSecurityOriginSpec()));
}
base::string16 MediaStreamInfoBarDelegate::GetButtonLabel(
InfoBarButton button) const {
return l10n_util::GetStringUTF16((button == BUTTON_OK) ?
IDS_MEDIA_CAPTURE_ALLOW : IDS_MEDIA_CAPTURE_DENY);
}
bool MediaStreamInfoBarDelegate::Accept() {
GURL origin(controller_->GetSecurityOriginSpec());
if (origin.SchemeIsSecure()) {
UMA_HISTOGRAM_ENUMERATION("Media.DevicePermissionActions",
kAllowHttps, kPermissionActionsMax);
} else {
UMA_HISTOGRAM_ENUMERATION("Media.DevicePermissionActions",
kAllowHttp, kPermissionActionsMax);
}
controller_->Accept(true);
return true;
}
bool MediaStreamInfoBarDelegate::Cancel() {
UMA_HISTOGRAM_ENUMERATION("Media.DevicePermissionActions",
kDeny, kPermissionActionsMax);
controller_->Deny(true, content::MEDIA_DEVICE_PERMISSION_DENIED);
return true;
}
base::string16 MediaStreamInfoBarDelegate::GetLinkText() const {
return l10n_util::GetStringUTF16(IDS_LEARN_MORE);
}
bool MediaStreamInfoBarDelegate::LinkClicked(
WindowOpenDisposition disposition) {
InfoBarService::WebContentsFromInfoBar(infobar())->OpenURL(
content::OpenURLParams(
GURL(chrome::kMediaAccessLearnMoreUrl),
content::Referrer(),
(disposition == CURRENT_TAB) ? NEW_FOREGROUND_TAB : disposition,
ui::PAGE_TRANSITION_LINK, false));
return false; // Do not dismiss the info bar.
}
|