chromium/components/optimization_guide/core/model_execution/response_parser_registry.cc

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

#include "components/optimization_guide/core/model_execution/response_parser_registry.h"

#include <memory>

#include "base/functional/callback.h"
#include "base/no_destructor.h"
#include "components/optimization_guide/core/model_execution/aqa_response_parser.h"
#include "components/optimization_guide/core/model_execution/json_response_parser.h"
#include "components/optimization_guide/core/model_execution/simple_response_parser.h"

namespace optimization_guide {

ResponseParserRegistry::ResponseParserRegistry() {}
ResponseParserRegistry::~ResponseParserRegistry() = default;

const ResponseParserRegistry& ResponseParserRegistry::Get() {}

std::unique_ptr<ResponseParser> ResponseParserRegistry::CreateParser(
    const proto::OnDeviceModelExecutionOutputConfig& config) const {}

}  // namespace optimization_guide