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

Unified Diff: chrome/browser/ui/content_settings/media_setting_changed_infobar_delegate.cc

Issue 588153003: Remove MediaSettingChangedInfobar and show latest state in bubble (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: switch -> if Created 6 years, 3 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/content_settings/media_setting_changed_infobar_delegate.cc
diff --git a/chrome/browser/ui/content_settings/media_setting_changed_infobar_delegate.cc b/chrome/browser/ui/content_settings/media_setting_changed_infobar_delegate.cc
deleted file mode 100644
index 16f08fdd0fcd12522c16eb0f6b8c4e16da23fa46..0000000000000000000000000000000000000000
--- a/chrome/browser/ui/content_settings/media_setting_changed_infobar_delegate.cc
+++ /dev/null
@@ -1,59 +0,0 @@
-// Copyright (c) 2013 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/content_settings/media_setting_changed_infobar_delegate.h"
-
-#include "base/logging.h"
-#include "chrome/browser/infobars/infobar_service.h"
-#include "chrome/grit/generated_resources.h"
-#include "components/infobars/core/infobar.h"
-#include "content/public/browser/web_contents.h"
-#include "grit/theme_resources.h"
-#include "ui/base/l10n/l10n_util.h"
-
-// static
-void MediaSettingChangedInfoBarDelegate::Create(
- InfoBarService* infobar_service) {
- infobar_service->AddInfoBar(ConfirmInfoBarDelegate::CreateInfoBar(
- scoped_ptr<ConfirmInfoBarDelegate>(
- new MediaSettingChangedInfoBarDelegate())));
-}
-
-MediaSettingChangedInfoBarDelegate::MediaSettingChangedInfoBarDelegate()
- : ConfirmInfoBarDelegate() {
-}
-
-MediaSettingChangedInfoBarDelegate::~MediaSettingChangedInfoBarDelegate() {
-}
-
-int MediaSettingChangedInfoBarDelegate::GetIconID() const {
- return IDR_INFOBAR_MEDIA_STREAM_CAMERA;
-}
-
-infobars::InfoBarDelegate::Type
-MediaSettingChangedInfoBarDelegate::GetInfoBarType() const {
- return PAGE_ACTION_TYPE;
-}
-
-base::string16 MediaSettingChangedInfoBarDelegate::GetMessageText() const {
- return l10n_util::GetStringUTF16(
- IDS_MEDIASTREAM_SETTING_CHANGED_INFOBAR_MESSAGE);
-}
-
-int MediaSettingChangedInfoBarDelegate::GetButtons() const {
- return BUTTON_OK;
-}
-
-base::string16 MediaSettingChangedInfoBarDelegate::GetButtonLabel(
- InfoBarButton button) const {
- DCHECK_EQ(BUTTON_OK, button);
- return l10n_util::GetStringUTF16(IDS_CONTENT_SETTING_CHANGED_INFOBAR_BUTTON);
-}
-
-bool MediaSettingChangedInfoBarDelegate::Accept() {
- content::WebContents* web_contents =
- InfoBarService::WebContentsFromInfoBar(infobar());
- web_contents->GetController().Reload(true);
- return true;
-}
« no previous file with comments | « chrome/browser/ui/content_settings/media_setting_changed_infobar_delegate.h ('k') | chrome/chrome_browser_ui.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698