| Index: content/browser/download/base_file.cc
|
| diff --git a/content/browser/download/base_file.cc b/content/browser/download/base_file.cc
|
| index b5ded454288f4bcdb6c86b05b4ffbedc43e3e5aa..0b1db97c93a54c22fb139214ce7a170d5c4e1d65 100644
|
| --- a/content/browser/download/base_file.cc
|
| +++ b/content/browser/download/base_file.cc
|
| @@ -232,11 +232,11 @@ bool BaseFile::GetHash(std::string* hash) {
|
|
|
| std::string BaseFile::GetHashState() {
|
| if (!calculate_hash_)
|
| - return "";
|
| + return std::string();
|
|
|
| Pickle hash_state;
|
| if (!secure_hash_->Serialize(&hash_state))
|
| - return "";
|
| + return std::string();
|
|
|
| return std::string(reinterpret_cast<const char*>(hash_state.data()),
|
| hash_state.size());
|
|
|