chromium/components/services/app_service/public/cpp/protocol_handler_info.cc

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

#include "components/services/app_service/public/cpp/protocol_handler_info.h"

namespace apps {

ProtocolHandlerInfo::ProtocolHandlerInfo() = default;

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

ProtocolHandlerInfo::~ProtocolHandlerInfo() = default;

bool operator==(const ProtocolHandlerInfo& handler1,
                const ProtocolHandlerInfo& handler2) {}

bool operator!=(const ProtocolHandlerInfo& handler1,
                const ProtocolHandlerInfo& handler2) {}

base::Value ProtocolHandlerInfo::AsDebugValue() const {}

}  // namespace apps