chromium/components/security_interstitials/content/insecure_form_blocking_page.cc

// Copyright 2020 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/security_interstitials/content/insecure_form_blocking_page.h"

#include <ostream>

#include "base/notreached.h"
#include "base/strings/string_number_conversions.h"
#include "base/values.h"
#include "components/prefs/pref_registry_simple.h"
#include "components/security_interstitials/content/security_interstitial_controller_client.h"
#include "components/security_interstitials/core/pref_names.h"
#include "components/strings/grit/components_strings.h"
#include "ui/base/l10n/l10n_util.h"

namespace security_interstitials {

// static
const SecurityInterstitialPage::TypeID
    InsecureFormBlockingPage::kTypeForTesting =;

InsecureFormBlockingPage::InsecureFormBlockingPage(
    content::WebContents* web_contents,
    const GURL& request_url,
    std::unique_ptr<SecurityInterstitialControllerClient> controller_client)
    :{}

InsecureFormBlockingPage::~InsecureFormBlockingPage() = default;

void InsecureFormBlockingPage::RegisterProfilePrefs(
    PrefRegistrySimple* registry) {}

SecurityInterstitialPage::TypeID InsecureFormBlockingPage::GetTypeForTesting() {}

void InsecureFormBlockingPage::CommandReceived(const std::string& command) {}

void InsecureFormBlockingPage::PopulateInterstitialStrings(
    base::Value::Dict& load_time_data) {}

void InsecureFormBlockingPage::PopulateValuesForSharedHTML(
    base::Value::Dict& load_time_data) {}
}  // namespace security_interstitials