| 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 a5ce80923eb183b1d1c1f1fbd9dc2b51810e1adf..893d6ad8bbf38cada00b641677f3a50c6a447f50 100644
|
| --- a/ui/gfx/x/x11_atom_cache.cc
|
| +++ b/ui/gfx/x/x11_atom_cache.cc
|
| @@ -156,7 +156,11 @@ const char* kAtomsToCache[] = {"Abs Dbl End Timestamp",
|
|
|
| } // namespace
|
|
|
| -namespace ui {
|
| +namespace gfx {
|
| +
|
| +XAtom GetAtom(const char* name) {
|
| + return X11AtomCache::GetInstance()->GetAtom(name);
|
| +}
|
|
|
| X11AtomCache* X11AtomCache::GetInstance() {
|
| return base::Singleton<X11AtomCache>::get();
|
| @@ -191,4 +195,4 @@ XAtom X11AtomCache::GetAtom(const char* name) const {
|
| return it->second;
|
| }
|
|
|
| -} // namespace ui
|
| +} // namespace gfx
|
|
|