#ifndef EXTENSIONS_BROWSER_LAZY_CONTEXT_ID_H_
#define EXTENSIONS_BROWSER_LAZY_CONTEXT_ID_H_
#include <tuple>
#include "base/memory/raw_ptr.h"
#include "extensions/common/extension_id.h"
namespace content {
class BrowserContext;
}
namespace extensions {
class Extension;
class LazyContextTaskQueue;
class LazyContextId { … };
inline bool operator<(const LazyContextId& lhs, const LazyContextId& rhs) { … }
inline bool operator==(const LazyContextId& lhs, const LazyContextId& rhs) { … }
inline bool operator!=(const LazyContextId& lhs, const LazyContextId& rhs) { … }
}
#endif