| Index: ui/base/x/x11_util.cc
|
| diff --git a/ui/base/x/x11_util.cc b/ui/base/x/x11_util.cc
|
| index 783b1b46eeb1bf92428d7efdf0a6b1cd92e058d5..e73f65d5cff82716360b45817c1fb5b2dab3e875 100644
|
| --- a/ui/base/x/x11_util.cc
|
| +++ b/ui/base/x/x11_util.cc
|
| @@ -557,7 +557,7 @@ bool IsWindowVisible(XID window) {
|
| std::vector<XAtom> wm_states;
|
| if (GetAtomArrayProperty(window, "_NET_WM_STATE", &wm_states)) {
|
| XAtom hidden_atom = GetAtom("_NET_WM_STATE_HIDDEN");
|
| - if (ContainsValue(wm_states, hidden_atom))
|
| + if (base::ContainsValue(wm_states, hidden_atom))
|
| return false;
|
| }
|
|
|
|
|