diff options
author | estade@chromium.org <estade@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-10-14 20:12:50 +0000 |
---|---|---|
committer | estade@chromium.org <estade@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-10-14 20:12:50 +0000 |
commit | 58db2f88917448f794deeee45868137d9098339a (patch) | |
tree | 0aa9feba219c093223542830c3e9951aa8f63ec1 /chrome/browser/download/download_request_infobar_delegate.cc | |
parent | 66814bb0eb9fd82cb6acd58ddc9292555bd98322 (diff) | |
download | chromium_src-58db2f88917448f794deeee45868137d9098339a.zip chromium_src-58db2f88917448f794deeee45868137d9098339a.tar.gz chromium_src-58db2f88917448f794deeee45868137d9098339a.tar.bz2 |
Make the multiple download request dialog an infobar.
The icon is a placeholder until Glen makes a pretty one.
BUG=24047
TEST=go to skypher.com/SkyLined/Repro/Chrome/carpet bombing/repro.html
allow, deny, closing infobar, and closing tab all work as expected
Review URL: http://codereview.chromium.org/275011
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@29006 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/download/download_request_infobar_delegate.cc')
-rw-r--r-- | chrome/browser/download/download_request_infobar_delegate.cc | 65 |
1 files changed, 65 insertions, 0 deletions
diff --git a/chrome/browser/download/download_request_infobar_delegate.cc b/chrome/browser/download/download_request_infobar_delegate.cc new file mode 100644 index 0000000..3a6aa5d --- /dev/null +++ b/chrome/browser/download/download_request_infobar_delegate.cc @@ -0,0 +1,65 @@ +// Copyright (c) 2009 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/download/download_request_infobar_delegate.h" + +#include "app/l10n_util.h" +#include "app/resource_bundle.h" +#include "chrome/browser/tab_contents/tab_contents.h" +#include "grit/generated_resources.h" +#include "grit/theme_resources.h" + +DownloadRequestInfoBarDelegate::DownloadRequestInfoBarDelegate(TabContents* tab, + DownloadRequestManager::TabDownloadState* host) + : ConfirmInfoBarDelegate(tab), + host_(host) { + if (tab) + tab->AddInfoBar(this); +} + +DownloadRequestInfoBarDelegate::~DownloadRequestInfoBarDelegate() { +} + +void DownloadRequestInfoBarDelegate::InfoBarClosed() { + Cancel(); + // This will delete us. + ConfirmInfoBarDelegate::InfoBarClosed(); +} + +std::wstring DownloadRequestInfoBarDelegate::GetMessageText() const { + return l10n_util::GetString(IDS_MULTI_DOWNLOAD_WARNING); +} + +SkBitmap* DownloadRequestInfoBarDelegate::GetIcon() const { + return ResourceBundle::GetSharedInstance().GetBitmapNamed( + IDR_INFOBAR_MULTIPLE_DOWNLOADS); +} + +int DownloadRequestInfoBarDelegate::GetButtons() const { + return BUTTON_OK | BUTTON_CANCEL; +} + +std::wstring DownloadRequestInfoBarDelegate::GetButtonLabel( + ConfirmInfoBarDelegate::InfoBarButton button) const { + if (button == BUTTON_OK) + return l10n_util::GetString(IDS_MULTI_DOWNLOAD_WARNING_ALLOW); + else + return l10n_util::GetString(IDS_MULTI_DOWNLOAD_WARNING_DENY); +} + +bool DownloadRequestInfoBarDelegate::Accept() { + if (host_) { + host_->Accept(); + host_ = NULL; + } + return true; +} + +bool DownloadRequestInfoBarDelegate::Cancel() { + if (host_) { + host_->Cancel(); + host_ = NULL; + } + return true; +} |