From fb3ef9384cc76c4237f98e5aa38d2689cc7b60cd Mon Sep 17 00:00:00 2001 From: "aa@chromium.org" Date: Fri, 31 Jul 2009 23:59:53 +0000 Subject: Ever closer. Extract a client interface out of CrxInstaller and use it to implement ExtensionInstallUI. There is (still) no dialog here. But the next CL will, um, definitely have it. Also, fixed the issue with theme preview infobars not updating if you install a theme while another one is already previewed. BUG=17932 Review URL: http://codereview.chromium.org/160483 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@22228 0039d316-1c4b-4281-b951-d872f2087c98 --- chrome/browser/extensions/theme_preview_infobar_delegate.cc | 13 ------------- 1 file changed, 13 deletions(-) (limited to 'chrome/browser/extensions/theme_preview_infobar_delegate.cc') diff --git a/chrome/browser/extensions/theme_preview_infobar_delegate.cc b/chrome/browser/extensions/theme_preview_infobar_delegate.cc index 75c1ce8..d22ebda 100644 --- a/chrome/browser/extensions/theme_preview_infobar_delegate.cc +++ b/chrome/browser/extensions/theme_preview_infobar_delegate.cc @@ -16,19 +16,6 @@ ThemePreviewInfobarDelegate::ThemePreviewInfobarDelegate( profile_(tab_contents->profile()), name_(name) { } -bool ThemePreviewInfobarDelegate::EqualsDelegate(InfoBarDelegate* delegate) - const { - // If another infobar of this type is showing, this will prevent us adding - // a new one, we only care if they're the same type, as pressing undo always - // has the same result each time. This does mean that the text continues - // to refer to the old theme, but this is good enough for beta. - // http://crbug.com/17932 - if (delegate->AsThemePreviewInfobarDelegate()) - return true; - - return false; -} - void ThemePreviewInfobarDelegate::InfoBarClosed() { delete this; } -- cgit v1.1