blob: ea3857fc575fb618c17a4b646803700e58a0fd42 [file] [log] [blame]
// Copyright 2022 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include <stddef.h>
#include <stdint.h>
#include "base/command_line.h"
#include "base/i18n/icu_util.h"
#include "base/strings/string_piece.h"
#include "components/attribution_reporting/os_registration.h"
#include "url/gurl.h"
namespace {
struct Environment {
Environment() {
base::CommandLine::Init(0, nullptr);
base::i18n::InitializeICU();
}
};
} // namespace
extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) {
static Environment env;
attribution_reporting::ParseOsSourceOrTriggerHeader(
base::StringPiece(reinterpret_cast<const char*>(data), size));
return 0;
}