Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(136)

Unified Diff: chrome/browser/ui/gtk/infobars/media_stream_infobar_gtk.cc

Issue 9570012: Implement Linux Media Stream Infobar (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Fix Peter's comments Created 8 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/ui/gtk/infobars/media_stream_infobar_gtk.cc
diff --git a/chrome/browser/ui/gtk/infobars/media_stream_infobar_gtk.cc b/chrome/browser/ui/gtk/infobars/media_stream_infobar_gtk.cc
new file mode 100644
index 0000000000000000000000000000000000000000..22e1515d2f971f0ce2d8ade519977809b031ba42
--- /dev/null
+++ b/chrome/browser/ui/gtk/infobars/media_stream_infobar_gtk.cc
@@ -0,0 +1,92 @@
+// 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/ui/gtk/infobars/media_stream_infobar_gtk.h"
+
+#include <string>
+
+#include "base/utf_string_conversions.h"
+#include "chrome/browser/media/media_stream_devices_menu_model.h"
+#include "chrome/browser/ui/gtk/gtk_util.h"
+#include "chrome/browser/ui/media_stream_infobar_delegate.h"
+#include "grit/generated_resources.h"
+#include "ui/base/gtk/gtk_hig_constants.h"
+#include "ui/base/gtk/gtk_signal_registrar.h"
+#include "ui/base/l10n/l10n_util.h"
+
+InfoBar* MediaStreamInfoBarDelegate::CreateInfoBar(InfoBarTabHelper* owner) {
+ DCHECK(owner);
+ return new MediaStreamInfoBarGtk(owner, this);
+}
+
+MediaStreamInfoBarGtk::MediaStreamInfoBarGtk(
+ InfoBarTabHelper* owner,
+ MediaStreamInfoBarDelegate* delegate)
+ : InfoBarGtk(owner, delegate),
+ delegate_(delegate) {
+ devices_menu_model_ = new MediaStreamDevicesMenuModel(delegate);
+ Init();
+}
+
+MediaStreamInfoBarGtk::~MediaStreamInfoBarGtk() {
+}
+
+void MediaStreamInfoBarGtk::Init() {
+ GtkWidget* hbox = gtk_hbox_new(FALSE, ui::kControlSpacing);
+ gtk_util::CenterWidgetInHBox(hbox_, hbox, false, 0);
+ size_t offset = 0;
+
+ int message_id = IDS_MEDIA_CAPTURE_MIC_AND_VIDEO;
+ DCHECK(delegate_->has_audio() || delegate_->has_video());
+ if (!delegate_->has_audio())
+ message_id = IDS_MEDIA_CAPTURE_VIDEO_ONLY;
+ else if (!delegate_->has_video())
+ message_id = IDS_MEDIA_CAPTURE_MIC_ONLY;
+
+ string16 security_origin = UTF8ToUTF16(delegate_->GetSecurityOrigin());
+ string16 text(l10n_util::GetStringFUTF16(message_id,
+ security_origin, &offset));
+
+ gtk_box_pack_start(GTK_BOX(hbox), CreateLabel(UTF16ToUTF8(text)),
+ FALSE, FALSE, 0);
+
+ GtkWidget* button = gtk_button_new_with_label(
+ l10n_util::GetStringUTF8(IDS_MEDIA_CAPTURE_ALLOW).c_str());
+ Signals()->Connect(button, "clicked",
+ G_CALLBACK(&OnAllowButtonThunk), this);
+ gtk_box_pack_start(GTK_BOX(hbox), button, FALSE, FALSE, 0);
+
+ button = gtk_button_new_with_label(
+ l10n_util::GetStringUTF8(IDS_MEDIA_CAPTURE_DENY).c_str());
+ Signals()->Connect(button, "clicked",
+ G_CALLBACK(&OnDenyButtonThunk), this);
+ gtk_box_pack_start(GTK_BOX(hbox), button, FALSE, FALSE, 0);
+
+ // The devices button.
+ GtkWidget* devices_menu_button = CreateMenuButton(
+ l10n_util::GetStringUTF8(IDS_MEDIA_CAPTURE_DEVICES_MENU_TITLE).c_str());
+ Signals()->Connect(devices_menu_button, "clicked",
+ G_CALLBACK(&OnDevicesClickedThunk), this);
+ gtk_widget_show_all(devices_menu_button);
+ gtk_util::CenterWidgetInHBox(hbox_, devices_menu_button, true, 0);
+}
+
+void MediaStreamInfoBarGtk::OnDevicesClicked(GtkWidget* sender) {
+ ShowMenuWithModel(sender, NULL, devices_menu_model_);
+}
+
+void MediaStreamInfoBarGtk::OnAllowButton(GtkWidget* widget) {
+ std::string audio_id, video_id;
+ devices_menu_model_->GetSelectedDeviceId(
+ content::MEDIA_STREAM_DEVICE_TYPE_AUDIO_CAPTURE, &audio_id);
+ devices_menu_model_->GetSelectedDeviceId(
+ content::MEDIA_STREAM_DEVICE_TYPE_VIDEO_CAPTURE, &video_id);
+ delegate_->Accept(audio_id, video_id);
+ RemoveSelf();
+}
+
+void MediaStreamInfoBarGtk::OnDenyButton(GtkWidget* widget) {
+ delegate_->Deny();
+ RemoveSelf();
+}

Powered by Google App Engine
This is Rietveld 408576698