| Index: ui/gfx/x/x11_atom_cache.cc
|
| diff --git a/ui/gfx/x/x11_atom_cache.cc b/ui/gfx/x/x11_atom_cache.cc
|
| index 0d179343135a3e71ac29836595d40836944b54db..c7d8dc18c4c705c757c79c01d53a8eca8cd3f88a 100644
|
| --- a/ui/gfx/x/x11_atom_cache.cc
|
| +++ b/ui/gfx/x/x11_atom_cache.cc
|
| @@ -42,7 +42,8 @@ XAtom X11AtomCache::GetAtom(const char* name) const {
|
| return atom;
|
| }
|
|
|
| - CHECK(it != cached_atoms_.end()) << " Atom " << name << " not found";
|
| + // Atom |name| not found
|
| + CHECK(it != cached_atoms_.end());
|
| return it->second;
|
| }
|
|
|
|
|