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

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

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.h
diff --git a/chrome/browser/ui/content_settings/media_setting_changed_infobar_delegate.h b/chrome/browser/ui/content_settings/media_setting_changed_infobar_delegate.h
deleted file mode 100644
index 4dd6e136ec38eb7cdebf38048db5082ffa006520..0000000000000000000000000000000000000000
--- a/chrome/browser/ui/content_settings/media_setting_changed_infobar_delegate.h
+++ /dev/null
@@ -1,35 +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.
-
-#ifndef CHROME_BROWSER_UI_CONTENT_SETTINGS_MEDIA_SETTING_CHANGED_INFOBAR_DELEGATE_H_
-#define CHROME_BROWSER_UI_CONTENT_SETTINGS_MEDIA_SETTING_CHANGED_INFOBAR_DELEGATE_H_
-
-#include "components/infobars/core/confirm_infobar_delegate.h"
-
-class InfoBarService;
-
-// An infobar that tells the user a reload is required after changing media
-// settings, and allows a reload via a button on the infobar.
-class MediaSettingChangedInfoBarDelegate : public ConfirmInfoBarDelegate {
- public:
- // Creates a media setting changed infobar and delegate and adds the infobar
- // to |infobar_service|.
- static void Create(InfoBarService* infobar_service);
-
- private:
- MediaSettingChangedInfoBarDelegate();
- virtual ~MediaSettingChangedInfoBarDelegate();
-
- // ConfirmInfoBarDelegate:
- virtual int GetIconID() const OVERRIDE;
- virtual Type GetInfoBarType() const OVERRIDE;
- virtual base::string16 GetMessageText() const OVERRIDE;
- virtual int GetButtons() const OVERRIDE;
- virtual base::string16 GetButtonLabel(InfoBarButton button) const OVERRIDE;
- virtual bool Accept() OVERRIDE;
-
- DISALLOW_COPY_AND_ASSIGN(MediaSettingChangedInfoBarDelegate);
-};
-
-#endif // CHROME_BROWSER_UI_CONTENT_SETTINGS_MEDIA_SETTING_CHANGED_INFOBAR_DELEGATE_H_

Powered by Google App Engine
This is Rietveld 408576698