chromium/remoting/host/native_messaging/native_messaging_helpers.cc

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

#include "remoting/host/native_messaging/native_messaging_helpers.h"

#include "base/json/json_reader.h"
#include "base/logging.h"
#include "base/strings/stringize_macros.h"
#include "remoting/host/native_messaging/native_messaging_constants.h"

namespace remoting {

bool ParseNativeMessageJson(const std::string& message,
                            std::string& message_type,
                            base::Value::Dict& parsed_message) {}

std::optional<base::Value::Dict> CreateNativeMessageResponse(
    const base::Value::Dict& request) {}

void ProcessNativeMessageHelloResponse(base::Value::Dict& response,
                                       base::Value::List supported_features) {}

}  // namespace remoting