| 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 0ade81b86ef50f92b4b094114df6a0728e2534af..01a284c67bc25c33975a725b757aac6d900a62b3 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());
|
|
|