chromium/extensions/browser/lazy_context_id.h

// Copyright 2017 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#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) {}

}  // namespace extensions

#endif  // EXTENSIONS_BROWSER_LAZY_CONTEXT_ID_H_