Index: chrome/browser/download/base_file.h |
diff --git a/chrome/browser/download/base_file.h b/chrome/browser/download/base_file.h |
index 3b0782a7760bca3ff16510972e30151f64982b10..2dfaf14e1b05743f9c8de23ca5c4a8a8c3afd6f9 100644 |
--- a/chrome/browser/download/base_file.h |
+++ b/chrome/browser/download/base_file.h |
@@ -11,10 +11,12 @@ |
#include "base/file_path.h" |
#include "base/linked_ptr.h" |
#include "base/scoped_ptr.h" |
-#include "base/third_party/nss/blapi.h" |
#include "chrome/browser/power_save_blocker.h" |
#include "googleurl/src/gurl.h" |
+namespace base { |
+class SecureHash; |
+} |
namespace net { |
class FileStream; |
} |
@@ -95,7 +97,7 @@ class BaseFile { |
// Used to calculate sha256 hash for the file when calculate_hash_ |
// is set. |
- scoped_ptr<SHA256Context> sha_context_; |
+ scoped_ptr<base::SecureHash> secure_hash_; |
unsigned char sha256_hash_[kSha256HashLen]; |