chromium/chrome/browser/ui/views/side_panel/side_panel_entry_key.cc

// 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.

#include <sstream>
#include <string>

#include "base/check.h"
#include "base/check_op.h"
#include "chrome/browser/ui/views/side_panel/side_panel_entry_id.h"
#include "chrome/browser/ui/views/side_panel/side_panel_entry_key.h"

SidePanelEntryKey::SidePanelEntryKey(SidePanelEntryId id) :{}

SidePanelEntryKey::SidePanelEntryKey(SidePanelEntryId id,
                                     extensions::ExtensionId extension_id)
    :{}

SidePanelEntryKey::SidePanelEntryKey(const SidePanelEntryKey& other) = default;

SidePanelEntryKey::~SidePanelEntryKey() = default;

SidePanelEntryKey& SidePanelEntryKey::operator=(
    const SidePanelEntryKey& other) = default;

bool SidePanelEntryKey::operator==(const SidePanelEntryKey& other) const {}

bool SidePanelEntryKey::operator<(const SidePanelEntryKey& other) const {}

std::string SidePanelEntryKey::ToString() const {}