Index: chrome/common/safe_browsing/download_protection_util.h |
diff --git a/chrome/common/safe_browsing/download_protection_util.h b/chrome/common/safe_browsing/download_protection_util.h |
index f07181c7050883154d44459eae61173919ebcdf7..ff01cc56ca2f1c30053d94a0a48581fe94f2030e 100644 |
--- a/chrome/common/safe_browsing/download_protection_util.h |
+++ b/chrome/common/safe_browsing/download_protection_util.h |
@@ -11,25 +11,10 @@ |
namespace safe_browsing { |
namespace download_protection_util { |
-// Returns true if the given file is a supported binary file type. |
-bool IsSupportedBinaryFile(const base::FilePath& file); |
- |
-// Returns true if the given file is a supported archive file type. |
-bool IsArchiveFile(const base::FilePath& file); |
- |
// Returns the DownloadType of the file at |path|. This function is only valid |
// for paths that satisfy IsSupportedBinaryFile() above. |
ClientDownloadRequest::DownloadType GetDownloadType(const base::FilePath& file); |
-// Returns the extension of the file at |path|. |
-const base::FilePath::StringType GetFileExtension(const base::FilePath& file); |
- |
-// The maximum value returned by GetSBClientDownloadExtensionValueForUMA() + 1. |
-extern const int kSBClientDownloadExtensionsMax; |
- |
-// SBClientDownloadExtensions UMA enum value corresponding to |file|. |
-int GetSBClientDownloadExtensionValueForUMA(const base::FilePath& file); |
- |
} // namespace download_protection_util |
} // namespace safe_browsing |