| Index: trunk/src/chrome/browser/internal_auth.cc
|
| ===================================================================
|
| --- trunk/src/chrome/browser/internal_auth.cc (revision 239942)
|
| +++ trunk/src/chrome/browser/internal_auth.cc (working copy)
|
| @@ -166,10 +166,7 @@
|
| 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;
|
|
|