summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorestade@chromium.org <estade@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-10-14 20:21:26 +0000
committerestade@chromium.org <estade@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-10-14 20:21:26 +0000
commit7831b2d0c34f5376250c6b0a1e056703645f30e1 (patch)
treebf1722548e4338e8bac210b8f7816faed74ee6cf
parent1f989c34e633902ac5b2e59ad67076cf74f67a71 (diff)
downloadchromium_src-7831b2d0c34f5376250c6b0a1e056703645f30e1.zip
chromium_src-7831b2d0c34f5376250c6b0a1e056703645f30e1.tar.gz
chromium_src-7831b2d0c34f5376250c6b0a1e056703645f30e1.tar.bz2
Fix views build break.
TBR=Finnur Review URL: http://codereview.chromium.org/267103 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@29009 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r--chrome/common/temp_scaffolding_stubs.cc22
1 files changed, 0 insertions, 22 deletions
diff --git a/chrome/common/temp_scaffolding_stubs.cc b/chrome/common/temp_scaffolding_stubs.cc
index 4ab32eb..8d73a49 100644
--- a/chrome/common/temp_scaffolding_stubs.cc
+++ b/chrome/common/temp_scaffolding_stubs.cc
@@ -24,7 +24,6 @@
#endif
#if defined(TOOLKIT_VIEWS)
-#include "chrome/browser/download/download_request_dialog_delegate.h"
#include "chrome/browser/download/download_request_manager.h"
#include "chrome/browser/tab_contents/constrained_window.h"
#endif
@@ -182,27 +181,6 @@ void MemoryDetails::StartFetch() {
}
#endif
-#if defined(TOOLKIT_VIEWS)
-// This should prompt the user if she wants to allow more than one concurrent
-// download per tab. Until this is in place, always allow multiple downloads.
-class DownloadRequestDialogDelegateStub
- : public DownloadRequestDialogDelegate {
- public:
- explicit DownloadRequestDialogDelegateStub(
- DownloadRequestManager::TabDownloadState* host)
- : DownloadRequestDialogDelegate(host) { DoCancel(); }
-
- virtual void CloseWindow() {}
-};
-
-DownloadRequestDialogDelegate* DownloadRequestDialogDelegate::Create(
- TabContents* tab,
- DownloadRequestManager::TabDownloadState* host) {
- NOTIMPLEMENTED();
- return new DownloadRequestDialogDelegateStub(host);
-}
-#endif
-
#if !defined(TOOLKIT_VIEWS) && !defined(OS_MACOSX)
namespace download_util {