OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 "chrome/browser/download/download_manager.h" | 5 #include "chrome/browser/download/download_manager.h" |
6 | 6 |
7 #include "app/l10n_util.h" | 7 #include "app/l10n_util.h" |
8 #include "app/resource_bundle.h" | 8 #include "app/resource_bundle.h" |
9 #include "base/callback.h" | 9 #include "base/callback.h" |
10 #include "base/file_util.h" | 10 #include "base/file_util.h" |
(...skipping 785 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
796 | 796 |
797 void DownloadManager::RemoveObserver(Observer* observer) { | 797 void DownloadManager::RemoveObserver(Observer* observer) { |
798 observers_.RemoveObserver(observer); | 798 observers_.RemoveObserver(observer); |
799 } | 799 } |
800 | 800 |
801 bool DownloadManager::ShouldOpenFileBasedOnExtension( | 801 bool DownloadManager::ShouldOpenFileBasedOnExtension( |
802 const FilePath& path) const { | 802 const FilePath& path) const { |
803 FilePath::StringType extension = path.Extension(); | 803 FilePath::StringType extension = path.Extension(); |
804 if (extension.empty()) | 804 if (extension.empty()) |
805 return false; | 805 return false; |
806 if (download_util::IsExecutableExtension(extension)) | 806 if (!download_util::IsFileExtensionSafe(extension)) |
807 return false; | 807 return false; |
808 if (Extension::IsExtension(path)) | 808 if (Extension::IsExtension(path)) |
809 return false; | 809 return false; |
810 DCHECK(extension[0] == FilePath::kExtensionSeparator); | 810 DCHECK(extension[0] == FilePath::kExtensionSeparator); |
811 extension.erase(0, 1); | 811 extension.erase(0, 1); |
812 return download_prefs_->IsAutoOpenEnabledForExtension(extension); | 812 return download_prefs_->IsAutoOpenEnabledForExtension(extension); |
813 } | 813 } |
814 | 814 |
815 bool DownloadManager::IsDownloadProgressKnown() { | 815 bool DownloadManager::IsDownloadProgressKnown() { |
816 for (DownloadMap::iterator i = in_progress_.begin(); | 816 for (DownloadMap::iterator i = in_progress_.begin(); |
(...skipping 184 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1001 observed_download_manager_->RemoveObserver(this); | 1001 observed_download_manager_->RemoveObserver(this); |
1002 } | 1002 } |
1003 | 1003 |
1004 void DownloadManager::OtherDownloadManagerObserver::ModelChanged() { | 1004 void DownloadManager::OtherDownloadManagerObserver::ModelChanged() { |
1005 observing_download_manager_->NotifyModelChanged(); | 1005 observing_download_manager_->NotifyModelChanged(); |
1006 } | 1006 } |
1007 | 1007 |
1008 void DownloadManager::OtherDownloadManagerObserver::ManagerGoingDown() { | 1008 void DownloadManager::OtherDownloadManagerObserver::ManagerGoingDown() { |
1009 observed_download_manager_ = NULL; | 1009 observed_download_manager_ = NULL; |
1010 } | 1010 } |
OLD | NEW |