blob: ad57032ef6b69d2bf3c339a34cf9829285147e37 [file] [log] [blame]
// Copyright 2019 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "content/browser/devtools/devtools_protocol_encoding.h"
#include <string>
#include "third_party/inspector_protocol/encoding/encoding.h"
// A corpus for this fuzzer is located in
// devtools_protocol_encoding_cbor_fuzzer_corpus.
// The files contained therein were generated from JSON examples,
// by running the transcode utility from
// https://chromium.googlesource.com/deps/inspector_protocol/
namespace content {
namespace {
using ::inspector_protocol_encoding::span;
} // namespace
extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) {
std::string cbor;
content::ConvertJSONToCBOR(span<uint8_t>(data, size), &cbor);
return 0;
}
} // namespace content