chromium/third_party/blink/public/common/page/browsing_context_group_info.h

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

#ifndef THIRD_PARTY_BLINK_PUBLIC_COMMON_PAGE_BROWSING_CONTEXT_GROUP_INFO_H_
#define THIRD_PARTY_BLINK_PUBLIC_COMMON_PAGE_BROWSING_CONTEXT_GROUP_INFO_H_

#include "base/unguessable_token.h"
#include "third_party/blink/public/common/common_export.h"

#include "mojo/public/cpp/bindings/default_construct_tag.h"

namespace blink {

// Represents the information necessary to put a given Page in a specific
// browsing context group.
struct BLINK_COMMON_EXPORT BrowsingContextGroupInfo {};

bool BLINK_COMMON_EXPORT operator==(const BrowsingContextGroupInfo& lhs,
                                    const BrowsingContextGroupInfo& rhs);
bool BLINK_COMMON_EXPORT operator!=(const BrowsingContextGroupInfo& lhs,
                                    const BrowsingContextGroupInfo& rhs);

}  // namespace blink

#endif  // THIRD_PARTY_BLINK_PUBLIC_COMMON_PAGE_BROWSING_CONTEXT_GROUP_INFO_H_