| 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 e930321c7038efefb420f505dc9fd268b4b53844..ec972e0c332e4e0a1afcf0f2f249706751e75031 100644
|
| --- a/chrome/browser/extensions/api/identity/web_auth_flow.cc
|
| +++ b/chrome/browser/extensions/api/identity/web_auth_flow.cc
|
| @@ -76,7 +76,7 @@ void WebAuthFlow::Start() {
|
| // Attach a random ID string to the window so we can recoginize it
|
| // in OnAppWindowAdded.
|
| std::string random_bytes;
|
| - crypto::RandBytes(WriteInto(&random_bytes, 33), 32);
|
| + crypto::RandBytes(base::WriteInto(&random_bytes, 33), 32);
|
| base::Base64Encode(random_bytes, &app_window_key_);
|
|
|
| // identityPrivate.onWebFlowRequest(app_window_key, provider_url_, mode_)
|
|
|