#include "ui/gfx/x/atom_cache.h"
#include <utility>
#include <vector>
#include "base/check.h"
#include "base/logging.h"
#include "base/memory/singleton.h"
#include "third_party/abseil-cpp/absl/strings/ascii.h"
#include "ui/gfx/x/connection.h"
#include "ui/gfx/x/future.h"
namespace x11 {
namespace {
constexpr auto kAtomsToCache = …;
}
Atom GetAtom(const char* name) { … }
AtomCache::AtomCache(Connection* connection) : … { … }
AtomCache::~AtomCache() = default;
Atom AtomCache::GetAtom(const char* name) { … }
}