#ifndef COMPONENTS_HISTORY_CORE_BROWSER_MOJOM_HISTORY_TYPES_MOJOM_H_
#define COMPONENTS_HISTORY_CORE_BROWSER_MOJOM_HISTORY_TYPES_MOJOM_H_
#include <stdint.h>
#include <limits>
#include <optional>
#include <type_traits>
#include <utility>
#include "base/types/cxx23_to_underlying.h"
#include "mojo/public/cpp/bindings/clone_traits.h"
#include "mojo/public/cpp/bindings/equals_traits.h"
#include "mojo/public/cpp/bindings/lib/serialization.h"
#include "mojo/public/cpp/bindings/struct_ptr.h"
#include "mojo/public/cpp/bindings/struct_traits.h"
#include "mojo/public/cpp/bindings/union_traits.h"
#include "third_party/perfetto/include/perfetto/tracing/traced_value_forward.h"
#include "components/history/core/browser/mojom/history_types.mojom-features.h"
#include "components/history/core/browser/mojom/history_types.mojom-shared.h"
#include "components/history/core/browser/mojom/history_types.mojom-forward.h"
#include "mojo/public/mojom/base/time.mojom.h"
#include "url/mojom/url.mojom.h"
#include <string>
#include <vector>
namespace history::mojom {
class Tab { … };
template <typename T, Tab::EnableIfSame<T>* = nullptr>
bool operator<(const T& lhs, const T& rhs);
template <typename T, Tab::EnableIfSame<T>* = nullptr>
bool operator<=(const T& lhs, const T& rhs) { … }
template <typename T, Tab::EnableIfSame<T>* = nullptr>
bool operator>(const T& lhs, const T& rhs) { … }
template <typename T, Tab::EnableIfSame<T>* = nullptr>
bool operator>=(const T& lhs, const T& rhs) { … }
template <typename StructPtrType>
TabPtr Tab::Clone() const { … }
template <typename T, Tab::EnableIfSame<T>*>
bool Tab::Equals(const T& other_struct) const { … }
template <typename T, Tab::EnableIfSame<T>*>
bool operator<(const T& lhs, const T& rhs) { … }
}
namespace mojo {
template <>
struct StructTraits<::history::mojom::Tab::DataView,
::history::mojom::TabPtr> { … };
}
#endif