| Index: chrome/test/chromedriver/commands.cc
|
| diff --git a/chrome/test/chromedriver/commands.cc b/chrome/test/chromedriver/commands.cc
|
| index 99785106c1844cb32ab056da3ae378915a874875..8a4061b347d019f5467fece45fdbecae22abc112 100644
|
| --- a/chrome/test/chromedriver/commands.cc
|
| +++ b/chrome/test/chromedriver/commands.cc
|
| @@ -257,7 +257,7 @@ void ExecuteSessionCommandOnSessionThread(
|
| if (status_tmp.IsError() && status_tmp.code() != kChromeNotReachable) {
|
| status.AddDetails(
|
| "failed to check if window was closed: " + status_tmp.message());
|
| - } else if (!ContainsValue(web_view_ids, session->window)) {
|
| + } else if (!base::ContainsValue(web_view_ids, session->window)) {
|
| status = Status(kOk);
|
| }
|
| }
|
|
|