chromium/chrome/browser/extensions/api/messaging/native_messaging_host_manifest.cc

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

#include "chrome/browser/extensions/api/messaging/native_messaging_host_manifest.h"

#include <stddef.h>

#include "base/check.h"
#include "base/json/json_file_value_serializer.h"
#include "base/strings/string_util.h"
#include "chrome/common/chrome_features.h"

namespace extensions {

NativeMessagingHostManifest::~NativeMessagingHostManifest() {}

// static
bool NativeMessagingHostManifest::IsValidName(const std::string& name) {}

// static
std::unique_ptr<NativeMessagingHostManifest> NativeMessagingHostManifest::Load(
    const base::FilePath& file_path,
    std::string* error_message) {}

NativeMessagingHostManifest::NativeMessagingHostManifest() {}

bool NativeMessagingHostManifest::Parse(const base::Value::Dict& dict,
                                        std::string* error_message) {}

}  // namespace extensions