| Index: chrome/browser/internal_auth.cc
|
| diff --git a/chrome/browser/internal_auth.cc b/chrome/browser/internal_auth.cc
|
| index ed8ff26234771bcd022f83fd774fc8ce8cd6b29f..984c95477139b59af208050f1cb040f329945e4d 100644
|
| --- a/chrome/browser/internal_auth.cc
|
| +++ b/chrome/browser/internal_auth.cc
|
| @@ -166,10 +166,7 @@ void CreatePassport(const std::string& domain,
|
| return;
|
| }
|
| std::string hmac_base64;
|
| - if (!base::Base64Encode(hmac, &hmac_base64)) {
|
| - NOTREACHED();
|
| - return;
|
| - }
|
| + base::Base64Encode(hmac, &hmac_base64);
|
| if (hmac_base64.size() != BASE64_PER_RAW(kHMACSizeInBytes)) {
|
| NOTREACHED();
|
| return;
|
|
|