| 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..3c0f703c68ddc7ac62bfb0110c392fead43a6d28 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 SHA256Context;
|
| +}
|
| 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::SHA256Context> sha_context_;
|
|
|
| unsigned char sha256_hash_[kSha256HashLen];
|
|
|
|
|