// 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 "chrome/browser/safe_browsing/chrome_v4_protocol_config_provider.h" #include <string> #include "base/command_line.h" #include "build/branding_buildflags.h" #include "chrome/common/chrome_switches.h" #include "components/safe_browsing/core/browser/db/v4_protocol_manager_util.h" #if BUILDFLAG(IS_WIN) #include "chrome/install_static/install_util.h" #endif namespace safe_browsing { std::string GetProtocolConfigClientName() { … } V4ProtocolConfig GetV4ProtocolConfig() { … } } // namespace safe_browsing