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