chromium/third_party/openscreen/src/cast/receiver/channel/message_util.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 "cast/receiver/channel/message_util.h"

#include <string>
#include <utility>

#include "util/json/json_serialization.h"
#include "util/json/json_value.h"
#include "util/osp_logging.h"

namespace openscreen::cast {

CastMessage;

namespace {

ErrorOr<CastMessage> CreateAppAvailabilityResponse(
    int request_id,
    const std::string& sender_id,
    const std::string& app_id,
    AppAvailabilityResult availability_result) {}

}  // namespace

ErrorOr<CastMessage> CreateAppAvailableResponse(int request_id,
                                                const std::string& sender_id,
                                                const std::string& app_id) {}

ErrorOr<CastMessage> CreateAppUnavailableResponse(int request_id,
                                                  const std::string& sender_id,
                                                  const std::string& app_id) {}

}  // namespace openscreen::cast