blob: 08aa995b52dbd5a908ced5d237ee2f1c56ef0805 [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/crdtp/json.h"
namespace content {
extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) {
std::string cbor;
content::ConvertJSONToCBOR(crdtp::span<uint8_t>(data, size), &cbor);
return 0;
}
} // namespace content