1
    2
    3
    4
    5
    6
    7
    8
    9
   10
   11
   12
   13
   14
   15
   16
   17
   18
   19
   20
   21
   22
   23
   24
   25
   26
   27
   28
   29
   30
   31
   32
   33
   34
   35
   36
   37
   38
   39

android_webview / browser / component_updater / tpcd_metadata_component_loader.cc [blame]

// 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 "android_webview/browser/component_updater/tpcd_metadata_component_loader.h"

#include <memory>
#include <string>
#include <vector>

#include "android_webview/common/aw_switches.h"
#include "base/command_line.h"
#include "base/functional/bind.h"
#include "base/logging.h"
#include "components/component_updater/android/loader_policies/tpcd_metadata_component_loader_policy.h"
#include "components/tpcd/metadata/browser/parser.h"
#include "services/network/public/cpp/features.h"

namespace android_webview {

// Add TpcdMetadataComponentInstallerPolicy to the given policies vector, if
// the component is enabled.
void LoadTpcMetadataComponent(ComponentLoaderPolicyVector& policies) {
  if (!base::CommandLine::ForCurrentProcess()->HasSwitch(
          switches::kWebViewTpcdMetadaComponent)) {
    return;
  }

  DVLOG(1) << "Registering TPCD metadata component for loading in "
              "embedded WebView.";

  policies.push_back(
      std::make_unique<component_updater::TpcdMetadataComponentLoaderPolicy>(
          base::BindRepeating([](const std::string& raw_metadata) {
            tpcd::metadata::Parser::GetInstance()->ParseMetadata(raw_metadata);
          })));
}

}  // namespace android_webview