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

Unified Diff: chrome/browser/infobars/infobar_delegate.cc

Issue 240193003: Move Infobars core files to the Infobars component (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix nib name on mac Created 6 years, 8 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
« no previous file with comments | « chrome/browser/infobars/infobar_delegate.h ('k') | chrome/browser/infobars/infobar_manager.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/infobars/infobar_delegate.cc
diff --git a/chrome/browser/infobars/infobar_delegate.cc b/chrome/browser/infobars/infobar_delegate.cc
deleted file mode 100644
index b4576d25012686c535641ec5c1a420651cb9c8e2..0000000000000000000000000000000000000000
--- a/chrome/browser/infobars/infobar_delegate.cc
+++ /dev/null
@@ -1,107 +0,0 @@
-// 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/infobars/infobar_delegate.h"
-
-#include "base/logging.h"
-#include "build/build_config.h"
-#include "chrome/browser/infobars/infobar.h"
-#include "chrome/browser/infobars/infobar_manager.h"
-#include "ui/base/resource/resource_bundle.h"
-
-const int InfoBarDelegate::kNoIconID = 0;
-
-InfoBarDelegate::~InfoBarDelegate() {
-}
-
-InfoBarDelegate::InfoBarAutomationType
- InfoBarDelegate::GetInfoBarAutomationType() const {
- return UNKNOWN_INFOBAR;
-}
-
-bool InfoBarDelegate::EqualsDelegate(InfoBarDelegate* delegate) const {
- return false;
-}
-
-bool InfoBarDelegate::ShouldExpire(const NavigationDetails& details) const {
- if (!details.is_navigation_to_different_page)
- return false;
-
- return ShouldExpireInternal(details);
-}
-
-void InfoBarDelegate::InfoBarDismissed() {
-}
-
-int InfoBarDelegate::GetIconID() const {
- return kNoIconID;
-}
-
-InfoBarDelegate::Type InfoBarDelegate::GetInfoBarType() const {
- return WARNING_TYPE;
-}
-
-AutoLoginInfoBarDelegate* InfoBarDelegate::AsAutoLoginInfoBarDelegate() {
- return NULL;
-}
-
-ConfirmInfoBarDelegate* InfoBarDelegate::AsConfirmInfoBarDelegate() {
- return NULL;
-}
-
-ExtensionInfoBarDelegate* InfoBarDelegate::AsExtensionInfoBarDelegate() {
- return NULL;
-}
-
-InsecureContentInfoBarDelegate*
- InfoBarDelegate::AsInsecureContentInfoBarDelegate() {
- return NULL;
-}
-
-MediaStreamInfoBarDelegate* InfoBarDelegate::AsMediaStreamInfoBarDelegate() {
- return NULL;
-}
-
-PopupBlockedInfoBarDelegate* InfoBarDelegate::AsPopupBlockedInfoBarDelegate() {
- return NULL;
-}
-
-RegisterProtocolHandlerInfoBarDelegate*
- InfoBarDelegate::AsRegisterProtocolHandlerInfoBarDelegate() {
- return NULL;
-}
-
-ScreenCaptureInfoBarDelegate*
- InfoBarDelegate::AsScreenCaptureInfoBarDelegate() {
- return NULL;
-}
-
-ThemeInstalledInfoBarDelegate*
- InfoBarDelegate::AsThemePreviewInfobarDelegate() {
- return NULL;
-}
-
-TranslateInfoBarDelegate* InfoBarDelegate::AsTranslateInfoBarDelegate() {
- return NULL;
-}
-
-void InfoBarDelegate::StoreActiveEntryUniqueID() {
- contents_unique_id_ = infobar()->owner()->GetActiveEntryID();
-}
-
-gfx::Image InfoBarDelegate::GetIcon() const {
- int icon_id = GetIconID();
- return (icon_id == kNoIconID) ? gfx::Image() :
- ResourceBundle::GetSharedInstance().GetNativeImageNamed(icon_id);
-}
-
-InfoBarDelegate::InfoBarDelegate() : contents_unique_id_(0) {
-}
-
-bool InfoBarDelegate::ShouldExpireInternal(
- const NavigationDetails& details) const {
- // NOTE: If you change this, be sure to check and adjust the behavior of
- // anyone who overrides this as necessary!
- return (contents_unique_id_ != details.entry_id) || details.is_reload;
-}
« no previous file with comments | « chrome/browser/infobars/infobar_delegate.h ('k') | chrome/browser/infobars/infobar_manager.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698