chromium/chrome/browser/webapps/chrome_webapps_client.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 "chrome/browser/webapps/chrome_webapps_client.h"

#include "base/logging.h"
#include "chrome/common/url_constants.h"
#include "components/infobars/content/content_infobar_manager.h"
#include "components/security_state/content/security_state_tab_helper.h"
#include "content/public/browser/web_contents.h"
#include "url/origin.h"

namespace webapps {

bool ChromeWebappsClient::IsOriginConsideredSecure(const url::Origin& origin) {}

security_state::SecurityLevel
ChromeWebappsClient::GetSecurityLevelForWebContents(
    content::WebContents* web_contents) {}

infobars::ContentInfoBarManager*
ChromeWebappsClient::GetInfoBarManagerForWebContents(
    content::WebContents* web_contents) {}

std::optional<webapps::AppId> ChromeWebappsClient::GetAppIdForWebContents(
    content::WebContents* web_contents) {}

}  // namespace webapps