Index: chromecast/shell/browser/cast_download_manager_delegate.h |
diff --git a/chromecast/shell/browser/cast_download_manager_delegate.h b/chromecast/shell/browser/cast_download_manager_delegate.h |
deleted file mode 100644 |
index d18e4899d94c8449ad2dc6087bc38ffbad600fa6..0000000000000000000000000000000000000000 |
--- a/chromecast/shell/browser/cast_download_manager_delegate.h |
+++ /dev/null |
@@ -1,41 +0,0 @@ |
-// Copyright 2014 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 CHROMECAST_SHELL_BROWSER_CAST_DOWNLOAD_MANAGER_DELEGATE_H_ |
-#define CHROMECAST_SHELL_BROWSER_CAST_DOWNLOAD_MANAGER_DELEGATE_H_ |
- |
-#include "base/macros.h" |
-#include "content/public/browser/download_manager_delegate.h" |
- |
-namespace chromecast { |
-namespace shell { |
- |
-class CastDownloadManagerDelegate : public content::DownloadManagerDelegate { |
- public: |
- CastDownloadManagerDelegate(); |
- virtual ~CastDownloadManagerDelegate(); |
- |
- // content::DownloadManagerDelegate implementation: |
- virtual void GetNextId( |
- const content::DownloadIdCallback& callback) override; |
- virtual bool DetermineDownloadTarget( |
- content::DownloadItem* item, |
- const content::DownloadTargetCallback& callback) override; |
- virtual bool ShouldOpenFileBasedOnExtension( |
- const base::FilePath& path) override; |
- virtual bool ShouldCompleteDownload( |
- content::DownloadItem* item, |
- const base::Closure& complete_callback) override; |
- virtual bool ShouldOpenDownload( |
- content::DownloadItem* item, |
- const content::DownloadOpenDelayedCallback& callback) override; |
- |
- private: |
- DISALLOW_COPY_AND_ASSIGN(CastDownloadManagerDelegate); |
-}; |
- |
-} // namespace shell |
-} // namespace chromecast |
- |
-#endif // CHROMECAST_SHELL_BROWSER_CAST_DOWNLOAD_MANAGER_DELEGATE_H_ |