| Index: chrome/browser/extensions/api/identity/web_auth_flow.cc
|
| diff --git a/chrome/browser/extensions/api/identity/web_auth_flow.cc b/chrome/browser/extensions/api/identity/web_auth_flow.cc
|
| index eb6106857521331fa196c6dca32a6be74615b590..220e983ab3fa40dd35d201d031957479c1c2897a 100644
|
| --- a/chrome/browser/extensions/api/identity/web_auth_flow.cc
|
| +++ b/chrome/browser/extensions/api/identity/web_auth_flow.cc
|
| @@ -76,8 +76,7 @@ void WebAuthFlow::Start() {
|
| // in OnShellWindowAdded.
|
| std::string random_bytes;
|
| crypto::RandBytes(WriteInto(&random_bytes, 33), 32);
|
| - bool success = base::Base64Encode(random_bytes, &shell_window_key_);
|
| - DCHECK(success);
|
| + base::Base64Encode(random_bytes, &shell_window_key_);
|
|
|
| // identityPrivate.onWebFlowRequest(shell_window_key, provider_url_, mode_)
|
| scoped_ptr<base::ListValue> args(new base::ListValue());
|
|
|