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

Unified Diff: chromecast/shell/browser/cast_download_manager_delegate.cc

Issue 638803002: Reorganizes Chromecast code to better reflect functional dependencies. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: extra DEPS: chromecast/crash/android --> chromecast/common Created 6 years, 2 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
Index: chromecast/shell/browser/cast_download_manager_delegate.cc
diff --git a/chromecast/shell/browser/cast_download_manager_delegate.cc b/chromecast/shell/browser/cast_download_manager_delegate.cc
deleted file mode 100644
index edc35f0da50f5f1b3099bf1cebd753249d7b8020..0000000000000000000000000000000000000000
--- a/chromecast/shell/browser/cast_download_manager_delegate.cc
+++ /dev/null
@@ -1,58 +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.
-
-#include "chromecast/shell/browser/cast_download_manager_delegate.h"
-
-#include "base/files/file_path.h"
-#include "base/logging.h"
-#include "content/public/browser/download_danger_type.h"
-#include "content/public/browser/download_item.h"
-
-namespace chromecast {
-namespace shell {
-
-CastDownloadManagerDelegate::CastDownloadManagerDelegate() {}
-
-CastDownloadManagerDelegate::~CastDownloadManagerDelegate() {}
-
-void CastDownloadManagerDelegate::GetNextId(
- const content::DownloadIdCallback& callback) {
- // See default behavior of DownloadManagerImpl::GetNextId()
- static uint32 next_id = content::DownloadItem::kInvalidId + 1;
- callback.Run(next_id++);
-}
-
-bool CastDownloadManagerDelegate::DetermineDownloadTarget(
- content::DownloadItem* item,
- const content::DownloadTargetCallback& callback) {
- // Running the DownloadTargetCallback with an empty FilePath signals
- // that the download should be cancelled.
- base::FilePath empty;
- callback.Run(
- empty,
- content::DownloadItem::TARGET_DISPOSITION_OVERWRITE,
- content::DOWNLOAD_DANGER_TYPE_MAYBE_DANGEROUS_CONTENT,
- empty);
- return true;
-}
-
-bool CastDownloadManagerDelegate::ShouldOpenFileBasedOnExtension(
- const base::FilePath& path) {
- return false;
-}
-
-bool CastDownloadManagerDelegate::ShouldCompleteDownload(
- content::DownloadItem* item,
- const base::Closure& callback) {
- return false;
-}
-
-bool CastDownloadManagerDelegate::ShouldOpenDownload(
- content::DownloadItem* item,
- const content::DownloadOpenDelayedCallback& callback) {
- return false;
-}
-
-} // namespace shell
-} // namespace chromecast
« no previous file with comments | « chromecast/shell/browser/cast_download_manager_delegate.h ('k') | chromecast/shell/browser/cast_http_user_agent_settings.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698