chromium/chrome/browser/ui/webui/certificate_manager/platform_cert_sources.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 "chrome/browser/ui/webui/certificate_manager/platform_cert_sources.h"

#include <vector>

#include "base/memory/weak_ptr.h"
#include "chrome/browser/ui/certificate_dialogs.h"
#include "chrome/browser/ui/webui/certificate_manager/certificate_manager_handler.h"
#include "chrome/browser/ui/webui/certificate_manager/certificate_manager_utils.h"
#include "chrome/browser/ui/webui/certificate_viewer_webui.h"
#include "chrome/common/net/x509_certificate_model.h"
#include "content/public/browser/network_service_instance.h"
#include "content/public/browser/web_contents.h"
#include "crypto/sha2.h"
#include "net/cert/x509_util.h"
#include "services/cert_verifier/public/mojom/cert_verifier_service_factory.mojom.h"

namespace {

void PopulatePlatformRootStoreLogsAsync(
    CertificateManagerPageHandler::GetCertificatesCallback callback,
    cert_verifier::mojom::CertificateTrust trust,
    cert_verifier::mojom::PlatformRootStoreInfoPtr info) {}

void ViewCertificateAsync(std::string sha256_hex_hash,
                          cert_verifier::mojom::CertificateTrust trust,
                          base::WeakPtr<content::WebContents> web_contents,
                          cert_verifier::mojom::PlatformRootStoreInfoPtr info) {}

void ExportCertificatesAsync(
    cert_verifier::mojom::CertificateTrust trust,
    std::string file_name,
    base::WeakPtr<content::WebContents> web_contents,
    cert_verifier::mojom::PlatformRootStoreInfoPtr info) {}

}  // namespace

PlatformCertSource::PlatformCertSource(
    std::string export_file_name,
    cert_verifier::mojom::CertificateTrust trust)
    :{}

void PlatformCertSource::GetCertificateInfos(
    CertificateManagerPageHandler::GetCertificatesCallback callback) {}

void PlatformCertSource::ViewCertificate(
    const std::string& sha256_hex_hash,
    base::WeakPtr<content::WebContents> web_contents) {}

void PlatformCertSource::ExportCertificates(
    base::WeakPtr<content::WebContents> web_contents) {}