| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "chromecast/shell/browser/cast_download_manager_delegate.h" | 5 #include "chromecast/browser/cast_download_manager_delegate.h" |
| 6 | 6 |
| 7 #include "base/files/file_path.h" | 7 #include "base/files/file_path.h" |
| 8 #include "base/logging.h" | 8 #include "base/logging.h" |
| 9 #include "content/public/browser/download_danger_type.h" | 9 #include "content/public/browser/download_danger_type.h" |
| 10 #include "content/public/browser/download_item.h" | 10 #include "content/public/browser/download_item.h" |
| 11 | 11 |
| 12 namespace chromecast { | 12 namespace chromecast { |
| 13 namespace shell { | 13 namespace shell { |
| 14 | 14 |
| 15 CastDownloadManagerDelegate::CastDownloadManagerDelegate() {} | 15 CastDownloadManagerDelegate::CastDownloadManagerDelegate() {} |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 49 } | 49 } |
| 50 | 50 |
| 51 bool CastDownloadManagerDelegate::ShouldOpenDownload( | 51 bool CastDownloadManagerDelegate::ShouldOpenDownload( |
| 52 content::DownloadItem* item, | 52 content::DownloadItem* item, |
| 53 const content::DownloadOpenDelayedCallback& callback) { | 53 const content::DownloadOpenDelayedCallback& callback) { |
| 54 return false; | 54 return false; |
| 55 } | 55 } |
| 56 | 56 |
| 57 } // namespace shell | 57 } // namespace shell |
| 58 } // namespace chromecast | 58 } // namespace chromecast |
| OLD | NEW |